:root {
    --primary-color: #0d381e;
    /* Dark green */
    --secondary-color: #a3c644;
    /* Light green/lime */
    --bg-color: #FCFAE5;
    /* Beige background */
    --text-color: #333333;
    --text-light: #ffffff;
    --font-main: 'Inter', sans-serif;

}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #7e8c54;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #7e8c54;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #3e4429;
    border-color: #3e4429;
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.site-header.transparent {
    background-color: transparent;
    color: var(--text-light);
}

.site-header.transparent .main-nav a {
    color: var(--text-light);
}

.site-header.light,
.site-header.menu-open {
    background-color: var(--bg-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.site-header.light .main-nav a,
.site-header.menu-open .main-nav a {
    color: var(--primary-color) !important;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 47px;
    width: 50px;
    object-fit: cover;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
    padding-top: 60px;
    overflow: hidden;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-mountain-container {
    width: 100%;
    margin-top: 40px;
    line-height: 0;
}

.footer-mountain {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-bottom {
    background-color: #0a2917;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Page Specific & General Components */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(to right, rgb(2, 44, 20), rgba(13, 56, 30, 0)), url('assets/home/heroimage.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: var(--text-light);
    padding-top: 120px;
    /* Pushes content down further */
}

.hero-content {
    width: 100%;
    max-width: max(320px, 34vw);
}

.hero-small-title {
    display: block;
    font-size: max(14px, 0.9vw);
    font-weight: 600;
    margin-bottom: max(15px, 1vw);
    opacity: 0.9;
}

.hero h1 {
    color: var(--text-light);
    font-size: max(32px, 3.75vw);
    line-height: 1.1;
    margin-bottom: max(20px, 1.5vw);
}

.hero p {
    font-size: max(14px, 0.9vw);
    max-width: max(300px, 26vw);
    margin-bottom: max(30px, 2vw);
    opacity: 0.8;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stars {
    color: #a3c644;
    font-size: 1.2rem;
}

.hero-socials {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

.hero-socials a {
    color: #fff;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-socials a:hover {
    background: #bef37b;
    border-color: #bef37b;
    color: #0d281a;
    transform: translateY(-3px);
}

.booking-bar {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    color: #fff;
    z-index: 10;
    margin-top: 40px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.input-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.input-with-icon i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.input-with-icon input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
}

.input-with-icon input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.booking-bar .btn-primary {
    background-color: #7e8c54;
    border-color: #7e8c54;
    color: #fff;
    padding: 18px 35px;
    font-size: 1rem;
    border-radius: 12px;
}

.booking-bar .btn-primary:hover {
    background-color: #636e42;
    border-color: #636e42;
}

.input-group {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.input-group input,
.input-group select {
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    background: transparent;
}

.booking-bar .btn-primary {
    padding: 15px 30px;
    border-radius: 10px;
}

/* Features Bar (Homepage Hero Bottom Banner) */
.features-bar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 25px 35px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    color: #fff;
    z-index: 10;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Vertical separator between features */
.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.feature-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #b5f566;
    /* Lime Green theme color */
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.feature-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .features-bar {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }
}

/* Page Header (for pages other than Home) */
.page-header {
    padding: 150px 0 50px;
    text-align: center;
    background-color: var(--bg-color);
}

.page-header h1 {
    margin-bottom: 10px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 30px;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
}

.bento-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bento-bg-slider .owl-stage-outer,
.bento-bg-slider .owl-stage,
.bento-bg-slider .owl-item,
.bento-bg-slider .item {
    height: 100%;
    overflow: hidden;
}

.bento-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.bento-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(13, 56, 30, 0.9), transparent);
    z-index: 1;
    pointer-events: none;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.bento-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bento-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 3;
    grid-row: span 2;
}

.badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.testimonials {
    background-color: #5F693F;
    /* Olive green background */
    padding: 100px 0;
    color: #fff;
}

.testimonial-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 30px;
    font-style: italic;
    text-align: left;
    display: block;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testimonial-header .header-text {
    max-width: 500px;
}

.testimonial-header .sub-title {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.testimonial-header h3 {
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background-color: #fff;
    color: #5d6740;
}

.testimonial-slider {
    display: block;
    /* Required for Owl Carousel */
    width: 100%;
}

.owl-stage {
    display: flex;
    /* Key for equal heights */
}

.owl-item {
    display: flex;
    flex: 1 0 auto;
}

.testimonial-card {
    background-color: #fff;
    color: var(--text-color);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    /* Fill the owl-item */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-card .stars {
    color: #bef37b;
    margin-bottom: 25px;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 40px;
}

.user-info {
    margin-top: auto;
}

.user-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover;
    display: block;
}

/* Feature Cards (keeping for other pages if needed, or remove) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-family: var(--font-main);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    color: #fff;
}

.contact-info h3 {
    color: var(--secondary-color);
}

/* Room Modal/Card */
.room-card {
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.room-card img {
    width: 40%;
    object-fit: cover;
}

.room-details {
    padding: 30px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-controls {
        display: none;
    }

    .contact-container,
    .room-card {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .room-card img,
    .room-details {
        width: 100%;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.cta-container {
    display: flex;
    background-color: #2d341f;
    /* Dark olive/brown background from image */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-info {
    flex: 1;
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-info h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.detail-item h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.detail-item p {
    margin-bottom: 0;
    opacity: 0.7;
    font-size: 0.95rem;
}

.btn-cta {
    align-self: flex-start;
    background-color: #7e8c54;
    border-color: #7e8c54;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
}

.btn-cta:hover {
    background-color: #636e42;
    border-color: #636e42;
    color: #fff;
}

.cta-image {
    flex: 1.2;
    min-height: 500px;
    max-height: 650px;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
    }

    .cta-info {
        padding: 40px 20px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .cta-info h3 {
        font-size: 1.8rem !important;
    }

    .cta-image {
        height: 380px !important;
        min-height: 380px !important;
        max-height: 380px !important;
        order: -1;
        overflow: hidden !important;
    }

    .cta-image img {
        object-position: center 60% !important;
    }

    .btn-cta {
        align-self: center !important;
        justify-content: center !important;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #0d281a;
    color: #fff;
    padding-top: 80px;
    font-family: var(--font-main);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-newsletter {
    display: flex;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 20px;
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter button {
    background-color: #7e8c54;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #636e42;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.footer-mountain-section {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.footer-mountain-section .container {
    position: relative;
    height: 100%;
}

.mountain-bg-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 180px;
    width: 1500px;
    /* Forces it to be huge, breaking out of the container */
    max-width: 80vw;
    background-color: #7E8C54;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1;
}

.footer-mountain {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 1500px;
    max-width: 80%;
    z-index: 2;
    object-fit: contain;
}

.footer-bottom-wrapper {
    border-top: 1px solid #fff;
    background-color: #0d281a;
    padding: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #e0e0e0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        margin-bottom: 0 !important;
        padding-bottom: 20px !important;
    }

    .footer-col {
        flex: none !important;
        margin-bottom: 30px;
    }

    .footer-mountain-section {
        display: none !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .view-gallery {
        display: none !important;
    }
}

/* =============================== About Page Specific Styles =============================== */
.facility-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    height: 750px;
    width: 100%;
    min-width: 0;
}

@media (max-width: 992px) {
    .facility-grid,
    .facility-right-col {
        display: flex !important;
        flex-direction: column !important;
        height: auto;
        gap: 30px;
    }

    .facility-item,
    .facility-item.large,
    .facility-item.small {
        height: 350px !important;
        width: 100%;
        flex: none !important;
    }
}

.facility-right-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    width: 100%;
    min-width: 0;
}

.facility-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.facility-item.large {
    height: 100%;
}

.facility-item.small {
    flex: 1;
    height: 100%;
}

.facility-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.facility-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(13, 56, 30, 0.9), transparent);
    z-index: 1;
    pointer-events: none;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #fff;
    z-index: 2;
}

.item-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.item-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/home/ctaimg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    /* Remove top padding for better centering */
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px 50px;
    max-width: max(350px, 39vw);
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 0 20px;
}

.glass-card .badge {
    display: inline-block;
    background-color: #bef37b;
    color: #2d341f;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: max(12px, 0.7vw);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
}

.glass-card h2 {
    font-size: max(24px, 1.85vw);
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.glass-card p {
    font-size: max(13px, 0.8vw);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.about-content-section {
    background-color: #FCFAE5;
    /* Light cream background from image */
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    color: #2d341f;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text .underline {
    width: 80px;
    height: 6px;
    background-color: #2d341f;
    margin-bottom: 40px;
    border-radius: 3px;
}

.about-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stats-container {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}

.stat-box {
    border: 1px solid rgba(45, 52, 31, 0.2);
    border-radius: 15px;
    padding: 25px;
    flex: 1;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-box h4 {
    font-size: 1.5rem;
    color: #2d341f;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #666;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.tilted-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image-wrapper:hover .tilted-image {
    transform: rotate(0deg);
}

.image-quote {
    position: absolute;
    bottom: -10px;
    left: -30px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    max-width: 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-left: 5px solid #bef37b;
}

.image-quote p {
    font-size: 0.95rem;
    font-style: normal;
    color: #2d341f;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

/* Card Stack Styles */
.card-stack-container {
    position: relative;
    cursor: pointer;
    perspective: 1000px;
    z-index: 1;
}

.card-stack {
    position: relative;
    width: 100%;
    /* 5/4 ratio fallback for mobile browsers that don't support aspect-ratio */
    padding-bottom: 125%; 
}

.stacked-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center bottom;
}

/* 1st card (top) */
.stacked-card[data-index="0"] {
    transform: translateY(0) scale(1) rotate(3deg);
    z-index: 4;
    opacity: 1;
}

/* 2nd card */
.stacked-card[data-index="1"] {
    transform: translateY(-15px) scale(0.95) rotate(-2deg);
    z-index: 3;
    opacity: 0.9;
}

/* 3rd card */
.stacked-card[data-index="2"] {
    transform: translateY(-30px) scale(0.9) rotate(1deg);
    z-index: 2;
    opacity: 0.8;
}

/* 4th card */
.stacked-card[data-index="3"] {
    transform: translateY(-45px) scale(0.85) rotate(-1deg);
    z-index: 1;
    opacity: 0.6;
}

.card-stack-container:hover .stacked-card[data-index="0"] {
    transform: translateY(-5px) scale(1.02) rotate(0deg);
}

.card-stack-container:hover .stacked-card[data-index="1"] {
    transform: translateY(-20px) scale(0.97) rotate(-3deg);
}

.header-actions .chat-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-header.transparent .header-actions .chat-icon {
    color: #fff;
}

.header-actions .chat-icon:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        order: 2;
    }

    .about-image-wrapper {
        order: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .image-quote {
        left: 0;
        bottom: 10px;
    }

    .glass-card h2 {
        font-size: 2rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #5f693f;
    /* Dark olive green */
    padding: 100px 0;
    color: #fff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered .sub-title {
    display: block;
    font-size: 2rem;
    margin-bottom: 5px;
    color: #fff;
    opacity: 1;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-header-centered h3 {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 400;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    color: #333;
    transition: transform 0.3s ease;
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e2efd2;
    color: #5f693f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #2d341f;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

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

/* Resort Facilities & Gallery */
.resort-facilities {
    background-color: #FCFAE5;
    padding: 100px 0;
}

.facility-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.facility-header h2 {
    color: #2d341f;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.facility-header p {
    color: #555;
    margin-bottom: 0;
}

.view-gallery {
    color: #2d341f;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-gallery:hover {
    text-decoration: underline;
}

.facility-grid {
    display: flex;
    gap: 25px;
    margin-bottom: 80px;
    align-items: stretch;
    /* This ensures both columns have the same height */
}

.facility-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.facility-item.large {
    flex: 1.5;
    height: auto;
    /* Allow it to stretch */
}

.facility-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.facility-item.small {
    flex: 1;
    height: 300px;
    /* Set a fixed height for small items to define the column height */
}

.facility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 20px;
    border-radius: 30px;
    color: #2d341f;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(13, 56, 30, 0.9), transparent);
    color: #fff;
}

.item-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.item-overlay p {
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* CTA Card Centered */
.cta-card-centered {
    background-color: #5f693f;
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-card-centered h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.cta-card-centered p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-secondary-white {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    cursor: pointer;
}

.btn-secondary-white:hover {
    background-color: #fff;
    color: #5f693f;
}

@media (max-width: 992px) {
    .facility-grid {
        flex-direction: column;
    }

    .facility-item.large {
        height: 400px;
    }

    .cta-card-centered {
        padding: 50px 30px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary-white {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* ============================= Services Page Specific Styles ============================= */
.services-section {
    background-color: #FCFAE5;
    padding: 100px 0;
}

.service-header-left {
    margin-bottom: 50px;
}

.service-header-left h2 {
    color: #1a3c34;
    /* Dark blue-green */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-header-left p {
    color: #4a4a4a;
    font-size: 1.1rem;
    font-weight: 500;
}

.service-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.service-main-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-main-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-card-body {
    padding: 30px;
}

.service-card-body h4 {
    font-size: 1.2rem;
    color: #2d341f;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.service-info-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-block.dark {
    background-color: #1a3c34;
    color: #fff;
}

.info-block.light {
    background-color: #e8eee4;
    color: #2d341f;
}

.info-block i {
    font-size: 1.5rem;
}

.info-block.dark i {
    color: #bef37b;
}

.info-block.dark h5 {
    color: #fff;
}

.info-block h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.info-block p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Accommodation Section */
.accommodation-section {
    background-color: #5f693f;
    /* Dark olive green */
    padding: 100px 0;
}

.home-accommodation {
    background-color: #3a4226;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.accommodation-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    position: relative;
    height: 250px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 30px;
    color: #2d341f;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 1.25rem;
    color: #2d341f;
    margin-bottom: 15px;
    font-weight: 600;
}

.tag-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background-color: #e8eee4;
    color: #5f693f;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    flex: 1;
}

.btn-outline-green {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border: 1px solid #1a3c34;
    color: #1a3c34;
    background-color: transparent;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-green:hover {
    background-color: #1a3c34;
    color: #fff;
}

@media (max-width: 992px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Find Us Map Section */
.find-us-section {
    background-color: #5f693f;
    /* Dark olive green */
    padding: 100px 0;
    color: #fff;
}

.find-us-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.find-us-header h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
}

.find-us-header p {
    max-width: 450px;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: right;
}

.map-wrapper {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 80px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    color: #333;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-overlay-card .pin-icon {
    width: 40px;
    height: 40px;
    background-color: #bef37b;
    color: #3e4429;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.map-overlay-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.map-overlay-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.btn-open-maps {
    display: inline-block;
    background-color: #0d281a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-open-maps:hover {
    background-color: #1a3c34;
}

.bottom-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bottom-gallery-item {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
}

.bottom-gallery-item.wide {
    grid-column: span 2;
}

.bottom-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .find-us-header {
        flex-direction: column;
        gap: 20px;
    }

    .find-us-header p {
        text-align: left;
    }

    .map-overlay-card {
        display: none !important;
    }

    .bottom-gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .bottom-gallery-item {
        width: 100%;
        height: 300px; /* Optional: slight height adjustment for mobile screens */
    }

    .bottom-gallery-item.wide {
        grid-column: span 1;
    }
}


/* ============================= Gallery Page Specific Styles ============================= */
.page-gallery-section {
    background-color: #FCFAE5;
    padding: 100px 0;
}

.gallery-category {
    margin-bottom: 70px;
}

.gallery-category h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8eee4;
    font-weight: 600;
}

.gallery-slide {
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 280px;
    /* Explicitly fixed height to ensure all cards are identical */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

/* Customize Owl Carousel Dots for Gallery */
.gallery-carousel .owl-dots {
    margin-top: 20px !important;
}

.gallery-carousel .owl-dot span {
    background: #e8eee4 !important;
}

.gallery-carousel .owl-dot.active span,
.gallery-carousel .owl-dot:hover span {
    background: var(--secondary-color) !important;
}

/* ============================= Contact Page Specific Styles ============================= */
.contact-page-section {
    background-color: #FCFAE5;
    padding: 100px 0;
}

.contact-grid-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.contact-card-white {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-card-white h3 {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e8eee4;
    background-color: #FCFAE5;
    /* Light cream to match theme */
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: #7e8c54;
    outline: none;
}

.contact-form-group textarea {
    height: 150px;
    resize: none;
}

.btn-contact-submit {
    width: 100%;
    padding: 15px;
    background-color: #3e4429;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-contact-submit:hover {
    background-color: #2d341f;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card-green {
    background-color: #0d281a;
    color: #fff;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
}

.location-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-link:hover {
    color: #bef37b;
    text-decoration: underline;
}

.info-card-green i {
    font-size: 1.5rem;
    color: #bef37b;
    margin-top: 5px;
}

.info-card-green h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.info-card-green p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.info-card-lime {
    background-color: #bef37b;
    color: #0d281a;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card-lime h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.info-card-lime p {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.btn-wa-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #3e4429;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    margin-top: 10px;
}

.contact-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.status-mini-card {
    background-color: #e8eee4;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.status-mini-card i {
    font-size: 1.5rem;
    color: #3e4429;
}

.status-mini-card span:first-of-type {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
}

.status-mini-card span:last-of-type {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 992px) {
    .contact-grid-main {
        grid-template-columns: 1fr;
    }

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


/* ============================= Blog Page Specific Styles ============================= */
.blog-hero {
    background-color: #FCFAE5;
    padding: 120px 0 80px;
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.blog-hero-content .badge {
    display: inline-block;
    background-color: #bef37b;
    color: #1a3c34;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: max(12px, 0.65vw);
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.blog-hero-content h2 {
    font-size: max(28px, 2.35vw);
    color: #1a3c34;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.blog-hero-content p {
    color: #555;
    font-size: max(14px, 0.9vw);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: max(300px, 26vw);
}

.filter-btns {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
}

.filter-btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    background: transparent;
    color: #555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.filter-btn:hover {
    background-color: #f1f8e9;
    border-color: #bef37b;
    color: #1a3c34;
}

.featured-post-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(13, 56, 30, 0.95), transparent);
    color: #fff;
}

.featured-overlay .cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #bef37b;
    display: block;
    margin-bottom: 10px;
}

.featured-overlay h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0;
}

.blog-posts-section {
    background-color: #5f693f;
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card-img {
    position: relative;
    height: 250px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-img .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #5f693f;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h4 {
    font-size: 1.25rem;
    color: #1a3c34;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
}

.read-more-link {
    font-size: 0.9rem;
    color: #1a3c34;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more-link:hover {
    gap: 12px;
    transition: gap 0.3s ease;
}

.blog-bottom-row {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 30px;
    margin-top: 30px;
}

.horizontal-blog-card {
    background-color: #e2efd2;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.horizontal-img {
    flex: 1;
}

.horizontal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horizontal-body {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-card {
    background-color: #f1f8e9;
    padding: 50px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.newsletter-icon {
    font-size: 2rem;
    color: #1a3c34;
    margin-bottom: 20px;
}

.newsletter-card h4 {
    color: #1a3c34;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    background-color: transparent;
}

.newsletter-btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background-color: #7e8c54;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #636e42;
}

@media (max-width: 992px) {
    .blog-hero {
        padding-top: 170px !important;
    }

    .blog-hero-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-bottom-row {
        grid-template-columns: 1fr;
    }

    .horizontal-blog-card {
        flex-direction: column;
    }

    .horizontal-img {
        flex: none !important;
        height: 250px !important;
    }

    .horizontal-body {
        flex: none !important;
        padding: 30px 20px !important;
    }
}


/* Extra Services Section */
.services-extra-section {
    background-color: #FCFAE5;
    padding: 100px 0;
}

.services-extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.extra-service-card {
    padding: 60px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.extra-service-card.white {
    background-color: #fff;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.extra-service-card.dark {
    background-color: #0d281a;
    color: #fff;
}

.extra-service-card.dark h4 {
    color: #fff;
}

.extra-icon-box {
    width: 60px;
    height: 60px;
    background-color: #bef37b;
    color: #0d281a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.extra-service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.extra-service-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.extra-bullets {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.extra-bullets.vertical {
    flex-direction: column;
    gap: 12px;
}

.extra-bullets span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.extra-bullets.horizontal span i {
    color: #7e8c54;
}

.extra-bullets.vertical span i {
    color: #bef37b;
}

.btn-olive {
    display: inline-block;
    background-color: #7e8c54;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-olive:hover {
    background-color: #636e42;
    transform: translateY(-2px);
}

.btn-light-green {
    display: inline-block;
    background-color: #bef37b;
    color: #0d281a;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-light-green:hover {
    background-color: #a8d96b;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .services-extra-grid {
        grid-template-columns: 1fr;
    }

    .extra-service-card {
        padding: 40px 30px;
    }
}

/* Accommodation Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FCFAE5;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 100%;
    max-width: 1100px;
    position: relative;
    margin: auto;
}

.modal-close-btn {
    background-color: #4a5d23;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s;
}

.modal-close-btn:hover {
    background-color: #334215;
}

.modal-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

/* Modal Left: Images */
.modal-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-main-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-view-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.modal-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 5px;
    /* space for focus ring/scroll */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.modal-thumbnails::-webkit-scrollbar {
    display: none;
}

.modal-thumbnails img {
    flex: 0 0 auto;
    width: calc(33.333% - 10px);
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
    user-select: none;
    -webkit-user-drag: none;
}

.modal-thumbnails.dragging {
    scroll-behavior: auto;
    cursor: grab;
}

.modal-thumbnails img:hover {
    opacity: 0.8;
}

.modal-description {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
}

.modal-description h5 {
    font-size: 1.05rem;
    color: #1a3c34;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-description p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Modal Right: Info Card */
.modal-info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.modal-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag-green {
    background-color: #b5f566;
    color: #2c4a1e;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-info-card h4 {
    font-size: 1.25rem;
    color: #1a3c34;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-short-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.pricing-toggle-box {
    background-color: #f1f0e4;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.toggle-buttons {
    display: flex;
    background-color: #e2e1d6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.toggle-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.toggle-btn.active {
    background-color: #fff;
    color: #2c4a1e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.price-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2px;
    font-weight: 600;
}

.price-val {
    font-size: 2rem;
    color: #2c4a1e;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-night {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.modal-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.modal-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #333;
}

.modal-features-list li i {
    color: #4a5d23;
    width: 20px;
    text-align: center;
}

.btn-olive-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #4a5d23;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-olive-full:hover {
    background-color: #334215;
}

.terms-text {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

@media (max-width: 992px) {
    .modal-content {
        grid-template-columns: 1fr;
    }
}

/* Premium Lightbox Modal for Menu (assets/menu.webp) */
.menu-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    /* Higher than header and accommodation modal overlays */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.menu-modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-modal-overlay.active .menu-modal-content {
    transform: scale(1);
}

.menu-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Full-Screen Zoomed State */
.menu-modal-overlay.zoomed-state .menu-modal-content {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.25s ease;
}

.menu-modal-overlay.zoomed-state .menu-modal-content img {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.menu-modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
    z-index: 10000;
}

.menu-modal-close:hover {
    color: #bef37b;
    /* Accent green color */
    transform: scale(1.1);
}

/* ========================================= */
/* Filtering Pills & Category Layout */
/* ========================================= */
.filter-pills-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    border-color: #bef37b;
    color: #bef37b;
    background-color: transparent;
}

.filter-pill.active {
    background-color: #bef37b;
    color: #1a3c34;
    border-color: #bef37b;
}

.facility-category {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-category.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .menu-modal-close {
        top: 20px;
        right: 25px;
        font-size: 38px;
    }

    .menu-modal-content {
        max-width: 95%;
    }

    .menu-modal-content img {
        max-height: 80vh;
    }
}

/* Mobile Menu Button Base Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

/* Mobile Nav Actions Container & Phone Button */
.mobile-nav-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-phone-btn {
    background: none;
    border: 1.5px solid currentColor;
    color: inherit;
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mobile-phone-btn:hover {
    color: #bef37b;
    transform: scale(1.1);
}

/* Gallery Filters Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    margin-top: 10px;
}

.filter-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgba(13, 56, 30, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Video Carousel Styles */
.video-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px; /* Space for the arrows outside the card */
}

.video-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
    margin: 0 !important;
}

.video-carousel .owl-nav button.owl-prev,
.video-carousel .owl-nav button.owl-next {
    pointer-events: auto;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.video-carousel .owl-nav-btn {
    background-color: transparent;
    color: #ff0000; /* Red like the scribble */
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.video-carousel .owl-nav-btn:hover {
    transform: scale(1.2);
    color: #cc0000;
}

.video-carousel .owl-nav button.owl-prev {
    transform: translateX(0);
}

.video-carousel .owl-nav button.owl-next {
    transform: translateX(0);
}

.video-slide {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: #000;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* COMPREHENSIVE MOBILE RESPONSIVENESS OVERRIDES */
@media (max-width: 768px) {

    .video-carousel {
        padding: 0 35px;
    }

    .video-carousel .owl-nav-btn {
        font-size: 2rem;
    }

    .video-carousel .owl-nav button.owl-prev {
        transform: translateX(0);
    }
    
    .video-carousel .owl-nav button.owl-next {
        transform: translateX(0);
    }

    /* Vertical Scrolling Carousel for Accommodation & Categories on Mobile */
    #accommodation-carousel.owl-carousel,
    .category-carousel.owl-carousel {
        display: block !important;
        height: 65vh !important; /* Dynamic height based on screen size */
        min-height: 540px !important; /* Safe minimum to prevent text/button cropping */
        max-height: 80vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        scroll-snap-type: y mandatory;
        border-radius: 15px;
        padding-bottom: 0 !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    #accommodation-carousel.owl-carousel::-webkit-scrollbar,
    .category-carousel.owl-carousel::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    #accommodation-carousel .owl-stage-outer,
    .category-carousel .owl-stage-outer {
        overflow: visible !important;
    }
    
    #accommodation-carousel .owl-stage,
    .category-carousel .owl-stage {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        transform: none !important;
        width: 100% !important;
    }
    
    #accommodation-carousel .owl-item,
    .category-carousel .owl-item {
        float: none !important;
        width: 100% !important;
        height: 100% !important; /* Dynamically matches container height exactly */
        margin-right: 0 !important;
        scroll-snap-align: start;
        display: flex !important;
        justify-content: center;
        padding-bottom: 20px; /* Internal gap for visual spacing between cards */
    }
    
    /* Hide duplicated cards created by OwlCarousel's loop feature */
    #accommodation-carousel .owl-item.cloned,
    .category-carousel .owl-item.cloned {
        display: none !important;
    }
    
    /* Ensure cards take full height inside the flex item and stretch equally */
    #accommodation-carousel .accommodation-card,
    .category-carousel .accommodation-card {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    #accommodation-carousel .card-content,
    .category-carousel .card-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    #accommodation-carousel .card-content a,
    .category-carousel .card-content a {
        margin-top: auto; /* Push button to bottom */
    }

    #accommodation-carousel .owl-nav, 
    #accommodation-carousel .owl-dots,
    .category-carousel .owl-nav, 
    .category-carousel .owl-dots {
        display: none !important;
    }

    /* 1. Container and Spacing */
    .container {
        padding: 0 20px !important;
    }

    section {
        padding: 60px 0 !important;
    }

    .hero,
    .about-hero {
        padding-top: 140px !important;
        height: auto !important;
        min-height: 100vh !important;
        text-align: center;
    }

    /* 2. Typography Scaling */
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    h4 {
        font-size: 1.2rem !important;
    }

    p {
        font-size: 0.95rem !important;
    }

    /* 3. Header/Navigation Adjustments */
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 15px 20px !important;
    }

    .mobile-nav-actions {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .header-actions {
        display: none !important;
        /* Hide CTA in header to save screen real estate */
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        /* Push menu below logo and toggle button */
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .site-header.light .main-nav {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
        animation: fadeInDown 0.3s ease forwards;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .main-nav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 8px 0;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 4. Grid Collapses */
    .service-grid,
    .accommodation-grid,
    .blog-grid,
    .contact-container,
    .features-grid,
    .gallery-grid,
    .services-extra-grid,
    .facility-grid,
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .bento-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }

    .bento-item,
    .bento-item.large,
    .bento-item.tall,
    .bento-item.wide {
        height: 350px !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* 5. Component Specific Fixes */
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }



    .cta-details,
    .detail-item {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .blog-card,
    .accommodation-card,
    .service-main-card {
        flex-direction: column;
    }

    .modal-content {
        grid-template-columns: 1fr !important;
        max-height: 85vh;
        overflow-y: auto;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        margin: 0 auto;
        max-width: 100%;
    }

    .hero-content p,
    .hero p,
    .about-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-rating {
        justify-content: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}