:root {
    --forest-green: #003d33;
    --forest-green-light: #004d40;
    --gold: #d4af37;
    --white: #ffffff;
    --text-muted: #e0e0e0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Global Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Prevent scrolling when mobile menu is open */
.no-scroll {
    overflow: hidden;
}


/* Top Bar */
.top-bar {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--gold);
}

.welcome-msg {
    font-weight: 500;
}

/* Main Navbar */
.main-nav {
    background-color: var(--forest-green);
    padding: 15px 0;
    position: sticky;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
/*    filter: brightness(0) invert(1);*/
    position: relative;
    z-index: 1100;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.book-now-btn {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.book-now-btn:hover {
    background-color: var(--white);
    color: var(--forest-green);
}

.top-bar-item a.contact-link {
    color: inherit;
    text-decoration: none;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.tel-link {
    color: inherit;
    text-decoration: none;
}

.tel-link:hover {
    text-decoration: underline;
}

/* ========================
   HAMBURGER BUTTON
   ======================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.ham-bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.35s ease;
    transform-origin: center;
}

/* Animate to X when open */
.hamburger.open .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open .ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================
   MOBILE NAVBAR
   ======================== */
.mobile-book-item { display: none; }

@media (max-width: 768px) {

    /* Top bar: single line, compact, centered */
    .top-bar .container {
        flex-wrap: nowrap;
        overflow: hidden;
        gap: 8px;
        padding: 0 20px;
        justify-content: center;
    }
    .top-bar { border-bottom: none; }
    .top-bar-item.welcome-msg { display: none; }
    .top-bar-item span { font-size: 0.75rem; }

    /* Navbar */
    .hamburger { display: flex; }
    .desktop-book { display: none; }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--forest-green);
        padding: 80px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links li:last-child { border-bottom: none; }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .mobile-book-item { 
        display: block;
        width: 100%;
        padding: 30px 40px 0;
    }
    
    .mobile-book-btn {
        display: block;
        padding: 18px;
        text-align: center;
        background-color: var(--gold);
        color: var(--white);
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.2rem;
        letter-spacing: 2px;
        text-decoration: none;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        transition: transform 0.3s ease;
    }

    .mobile-book-btn:active {
        transform: scale(0.98);
    }

    /* Global container padding on mobile */
    .container { padding: 0 20px; }

    /* About section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-section { padding: 60px 0; }

    /* Rooms section */
    .rooms-grid { grid-template-columns: 1fr; }
    .rooms-section { padding: 60px 0; }

    /* CTA section */
    .cta-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .cta-actions { flex-direction: column; gap: 15px; }
    .cta-section { padding: 60px 0; }

    /* Gallery */
    .gallery-section { padding: 60px 0; }

    /* Services */
    .services-section { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Find Us */
    .find-us-section { padding: 60px 0; }
    .find-us-grid { grid-template-columns: 1fr; }
    .map-wrapper { min-height: 300px; }

    /* Section titles */
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .top-bar-item:first-child { display: none; } /* hide address on very small */
    .section-title { font-size: 1.5rem; }
    .service-card { padding: 25px 20px; }
    .contact-card { padding: 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 992px) {
    /* Tablet */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .find-us-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .container { padding: 0 40px; }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active .hero-content {
    opacity: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: -1px;
}

.carousel-slide.active .hero-title {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-subtitle-box {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px 50px;
    display: inline-block;
    margin-bottom: 40px;
}

.carousel-slide.active .hero-subtitle-box {
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-weight: 400;
}

.btn-discover {
    background-color: var(--forest-green-light);
    color: var(--white);
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.carousel-slide.active .btn-discover {
    animation: fadeInUp 1.4s ease-out forwards;
}

.btn-discover:hover {
    background-color: var(--white);
    color: var(--forest-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Carousel Controls */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s;
    opacity: 0.6;
}

.carousel-prev { left: 40px; }
.carousel-next { right: 40px; }

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 15;
}

.indicator {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s;
    border-radius: 2px;
}

.indicator.active {
    background: var(--white);
    width: 70px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-subtitle-box { padding: 15px 25px; }
    .carousel-prev, .carousel-next { display: none; }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: #d1e0eb; /* Closer match to screenshot light-blue-gray */
}



.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr; /* Favors image on the right */
    gap: 60px;
    align-items: center;
}

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

.section-title {
    font-size: 2.5rem;
    color: #004d43;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.title-underline {
    width: 60px;
    height: 5px;
    background-color: #004d43;
    margin: 0 auto;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--forest-green);
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0.9;
}

.about-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 35px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    display: grid;
    gap: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.about-features li i {
    color: #004d43;
    font-size: 1.2rem;
    width: 30px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
}

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

.view-about-overlay {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-view-about {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-view-about:hover {
    background-color: var(--white);
    color: var(--forest-green);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .section-title { font-size: 2.8rem; }
    .about-section { padding: 60px 0; }
}

/* Rooms Section */
.rooms-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* Same background as About section from screenshot */
}

.section-subtitle {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

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

.room-card {
    background-color: #f9f6e5; /* Pale cream/off-white background from screenshot */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.room-image {
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-info {
    padding: 25px;
}

.room-name {
    font-size: 1.5rem;
    color: var(--forest-green);
    font-weight: 700;
    margin-bottom: 12px;
}

.room-details {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.room-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-details i {
    color: #004d43;
}

.room-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 25px;
    height: 3em; /* Fixed height for alignment */
    overflow: hidden;
}

.btn-book-card {
    display: block;
    background-color: #004d43; /* Exact dark emerald green */
    color: var(--white);
    text-align: center;
    padding: 12px 0;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-book-card:hover {
    background-color: var(--forest-green);
}

.rooms-footer {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #004d43;
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background-color: var(--forest-green);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #004d43 0%, #002d27 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.cta-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 50px;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 3.2rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.btn-cta-primary {
    background-color: var(--white);
    color: #004d43;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@media (max-width: 992px) {
    .cta-flex-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .cta-text { text-align: center; }
    .cta-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .cta-title { font-size: 2.2rem; }
    .cta-section { padding: 80px 0; }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* Same light-blue-gray as previous sections */
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 77, 67, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-footer {
    text-align: center;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #004d43;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 2rem;
    padding: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    user-select: none;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--white);
    color: #004d43;
}

.lightbox-prev { left: 50px; }
.lightbox-next { right: 50px; }

@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .lightbox-prev, .lightbox-next { 
        padding: 10px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* Same blue-gray background */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #aac2cc; /* Light blue-gray from screenshot */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: #9db5bf;
}

.service-icon {
    font-size: 2.5rem;
    color: #1a4d43; /* Dark green icon */
    margin-bottom: 20px;
}

.service-name {
    font-size: 1.4rem;
    color: #1a4d43;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.service-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-section {
        padding: 60px 0;
    }
}

/* Find Us Section */
.find-us-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* Same blue-gray background */
}

.find-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: #aac2cc; /* Light blue-gray glassmorphism */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    background-color: #9db5bf;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-card-header i {
    font-size: 1.5rem;
    color: #1a4d43;
}

.contact-card-header h4 {
    font-size: 1.3rem;
    color: #1a4d43;
    font-weight: 700;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.contact-card-body p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin: 5px 0;
}

.contact-card-body i {
    width: 20px;
    color: #1a4d43;
    margin-right: 10px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    min-height: 450px;
    border: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 992px) {
    .find-us-grid {
        grid-template-columns: 1fr;
    }
    .map-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .find-us-section {
        padding: 60px 0;
    }
    .contact-card {
        padding: 20px;
    }
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
    background-color: #004d43;
    color: rgba(255,255,255,0.85);
    font-family: 'Outfit', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 50px;
    padding: 70px 0 50px;
}

/* Column 1: Brand */
.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* Column headings */
.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 0.4px;
}

/* Column 2: Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.97rem;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Column 3: Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-contact-list li i {
    color: rgba(255,255,255,0.9);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 1rem;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

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

.footer-bottom-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0 30px;
        text-align: center;
    }
    .footer-brand, .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-tagline {
        margin: 0 auto 25px;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-links li, .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-bottom-links {
        gap: 20px;
        justify-content: center;
    }
}

/* Helper styles for missing icons */
.icon-pin::before { content: '📍'; }
.icon-star::before { content: '★'; }
.icon-phone::before { content: '📞'; }
.icon-mobile::before { content: '📱'; }

/* ========================
   ROOMS PAGE HERO
   ======================== */
.rooms-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/room2.jpg'); /* Placeholder luxury hotel room image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.rooms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 45, 0.7); /* Dark bluish-gray overlay from screenshot */
    z-index: 1;
}

.rooms-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.rooms-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #f9f6e5; /* Creamy white from screenshot */
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    font-family: 'Outfit', sans-serif;
}

.rooms-hero-subtitle-box {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 40px;
    display: inline-block;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.rooms-hero-subtitle {
    font-size: 1.6rem;
    color: #ffffff;
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .rooms-hero { height: 50vh; }
    .rooms-hero-title { font-size: 3rem; }
    .rooms-hero-subtitle { font-size: 1.2rem; }
    .rooms-hero-subtitle-box { padding: 12px 25px; }
}

/* ========================
   ACCOMMODATIONS SECTION
   ======================== */
.accommodations-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* Light blue-gray background from screenshot */
}

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

.section-header .section-title {
    font-size: 3rem;
    color: #0c2b4a; /* Muted dark blue */
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header .title-underline {
    width: 50px;
    height: 3px;
    background-color: #004d43; /* Forest green underline */
    margin: 0 auto 15px;
}

.section-header .section-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
}

.rooms-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-accommodation-card {
    background-color: #f9f6e5; /* Pale cream/off-white background */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.room-accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.room-card-image {
    height: 250px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-accommodation-card:hover .room-card-image img {
    transform: scale(1.08);
}

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

.room-card-title {
    font-size: 1.6rem;
    color: #0c2b4a;
    font-weight: 700;
    margin-bottom: 20px;
}

.room-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
}

.detail-item i {
    color: #004d43;
    width: 18px;
    text-align: center;
}

.room-card-btn {
    display: block;
    width: 100%;
    background-color: #004d43; /* Exact dark emerald green */
    color: #ffffff;
    text-align: center;
    padding: 14px 0;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s;
    margin-top: auto;
}

.room-card-btn:hover {
    background-color: #003d33;
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .rooms-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .rooms-card-grid {
        grid-template-columns: 1fr;
    }
    .section-header .section-title { font-size: 2.2rem; }
    .accommodations-section { padding: 60px 0; }
}

/* ========================
   ABOUT PAGE HERO
   ======================== */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/hs1.jpg'); /* Placeholder hotel building image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 45, 0.7);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #f9f6e5;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    font-family: 'Outfit', sans-serif;
}

.about-hero-subtitle-box {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 40px;
    display: inline-block;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.about-hero-subtitle {
    font-size: 1.6rem;
    color: #ffffff;
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .about-hero { height: 50vh; }
    .about-hero-title { font-size: 3rem; }
    .about-hero-subtitle { font-size: 1.2rem; }
    .about-hero-subtitle-box { padding: 12px 25px; }
}

/* ========================
   ABOUT WELCOME SECTION
   ======================== */
.about-welcome-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* Light blue-gray background */
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr; /* Favors image on the left */
    gap: 60px;
    align-items: center;
}

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

.image-decorative-frame {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-decorative-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* The thin gold/green-ish line inside the image frame from screenshot */
.image-decorative-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    pointer-events: none;
    z-index: 2;
}

.welcome-text-content {
    padding-right: 40px;
}

.welcome-title {
    font-size: 3.2rem;
    color: #0c2b4a; /* Muted dark blue */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.welcome-text-content .title-underline {
    width: 60px;
    height: 4px;
    background-color: #004d43;
    margin-bottom: 40px;
}

.welcome-description p {
    font-size: 1rem;
    color: #445566;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: justify;
}

.welcome-contact-btn {
    display: inline-block;
    background-color: #004d43; /* Forest green */
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0, 77, 67, 0.3);
}

.welcome-contact-btn:hover {
    background-color: #003d33;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 77, 67, 0.4);
}

@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .welcome-text-content { padding-right: 0; }
    .welcome-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .about-welcome-section { padding: 60px 0; }
    .welcome-title { font-size: 2rem; }
    .welcome-image-wrapper { padding: 0; }
}

/* ========================
   GALLERY PAGE HERO
   ======================== */
.gallery-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/images/gallery10.jpg'); /* Placeholder restaurant/lobby image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 45, 0.7);
    z-index: 1;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.gallery-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #f9f6e5;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    font-family: 'Outfit', sans-serif;
}

.gallery-hero-subtitle-box {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 40px;
    display: inline-block;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.gallery-hero-subtitle {
    font-size: 1.6rem;
    color: #ffffff;
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-hero { height: 50vh; }
    .gallery-hero-title { font-size: 3rem; }
    .gallery-hero-subtitle { font-size: 1.2rem; }
    .gallery-hero-subtitle-box { padding: 12px 25px; }
}

/* ========================
   PHOTO GALLERY SECTION
   ======================== */
.photo-gallery-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* consistent light blue-gray */
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background: #000;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 0.9;
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

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

.lightbox-overlay img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.lightbox-prev, .lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 60px;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: color 0.3s ease;
    user-select: none;
}

.lightbox-close:hover {
    color: #ffffff;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .photo-gallery-section { padding: 60px 0; }
}

/* ========================
   TIMELINE SECTION
   ======================== */
.timeline-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* consistent background */
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #0c2b4a; /* Dark blue line */
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    z-index: 2;
    opacity: 1;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background-color: #d1e0eb;
    border: 3px solid #0c2b4a;
    border-radius: 50%;
    z-index: 5;
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-number {
    position: absolute;
    top: 20px;
    background-color: #004d43; /* Forest green */
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.timeline-item.left .timeline-number {
    right: 40px;
}

.timeline-item.right .timeline-number {
    left: 40px;
}

.timeline-card {
    background-color: #b2c7cc; /* Soft teal-gray from screenshot */
    padding: 40px;
    border-radius: 40px; /* Rounded pill-like shape */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.timeline-card-title {
    font-size: 1.6rem;
    color: #0c2b4a;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.timeline-card-desc {
    font-size: 1rem;
    color: #445566;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

@media (max-width: 992px) {
    .timeline-item { padding: 20px 40px; }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-dot {
        left: 22px !important;
    }
    
    .timeline-number {
        left: 70px !important;
        top: -15px;
    }
    
    .timeline-card {
        border-radius: 25px;
        padding: 30px;
    }
}

/* ========================
   OUR CORE VALUES SECTION
   ======================== */
.values-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* consistent background */
}

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

.value-card {
    background-color: #b2c7cc; /* Soft teal-gray from screenshot */
    padding: 60px 40px;
    border-radius: 60px; /* Large pill-shaped radius */
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(255,255,255,0.3);
}

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

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #004d43; /* Forest green icon */
}

.value-title {
    font-size: 1.8rem;
    color: #0c2b4a;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.value-desc {
    font-size: 1.05rem;
    color: #445566;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 650px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .value-card { padding: 50px 30px; border-radius: 40px; }
    .values-section { padding: 60px 0; }
}


/* ========================
   ROOM AMENITIES SECTION
   ======================== */
.amenities-section {
    padding: 100px 0;
    background-color: #d1e0eb; /* Same light blue-gray background */
}

.amenity-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.amenity-card {
    background-color: #b2c7cc; /* Soft teal-gray from screenshot */
    padding: 60px 40px;
    border-radius: 60px; /* Large border radius for the pill-like look */
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid rgba(255,255,255,0.3); /* Subtle light border */
}

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

.amenity-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #0c2b4a; /* Muted dark blue icon */
}

.amenity-title {
    font-size: 1.5rem;
    color: #0c2b4a;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.amenity-desc {
    font-size: 1rem;
    color: #445566;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 992px) {
    .amenity-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 650px) {
    .amenity-card-grid {
        grid-template-columns: 1fr;
    }
    .amenity-card { padding: 50px 30px; border-radius: 40px; }
    .amenities-section { padding: 60px 0; }
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-section {
    padding: 100px 0;
    background-color: #d1e0eb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

/* Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-section .contact-card {
    display: flex;
    align-items: center;
    background-color: #b2c7cc;
    padding: 30px 40px;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: #004d43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.contact-details h4 {
    margin: 0 0 5px 0;
    color: #0c2b4a;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: #445566;
    font-size: 1rem;
    line-height: 1.4;
}

/* Form Container */
.contact-form-container {
    background-color: #b2c7cc;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0c2b4a;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    background: #f9f9f9;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #004d43;
}

.submit-btn {
    background-color: #004d43;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #00332d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

@media (max-width: 600px) {
    .contact-section { padding: 60px 0; }
    .contact-form-container { padding: 30px; border-radius: 25px; }
    .contact-section .contact-card { padding: 25px; border-radius: 25px; }
    .contact-icon { width: 50px; height: 50px; font-size: 1.2rem; margin-right: 15px; }
}

/* ============================
   FIND US SECTION (INDEX)
   ============================ */
.find-us-section {
    padding: 100px 0;
    background-color: #d1e0eb;
}

.find-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.find-us-section .contact-card {
    background-color: #b2c7cc;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #004d43;
}

.contact-card-header i {
    font-size: 1.5rem;
}

.contact-card-header h4 {
    margin: 0;
    font-size: 1.3rem;
    color: #0c2b4a;
}

.contact-card-body p {
    margin: 0 0 5px 0;
    color: #445566;
    line-height: 1.5;
}

.map-wrapper {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .find-us-grid { grid-template-columns: 1fr; }
    .map-wrapper { min-height: 350px; }
}

@media (max-width: 600px) {
    .find-us-section { padding: 60px 0; }
    .find-us-section .contact-card { padding: 25px; border-radius: 20px; }
    .contact-card-header { margin-bottom: 10px; }
    .contact-card-header h4 { font-size: 1.1rem; }
}

/* ============================
   UNIVERSAL BOOKING MODAL
   ============================ */
.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 43, 74, 0.4); /* Muted dark blue overlay */
    backdrop-filter: blur(12px); /* Premium frost effect */
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: none; /* Controlled by JS but setting flex here when active */
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.booking-modal-content {
    background: rgba(209, 224, 235, 0.98); 
    max-width: 650px;
    width: 100%;
    padding: 35px 40px;
    border-radius: 35px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.4);
    animation: modalSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 98vh; /* Allow near full height but try to avoid scroll */
    overflow-y: auto;
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-booking-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    color: #445566;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-booking-modal:hover {
    color: #0c2b4a;
}

.booking-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.booking-modal-header h2 {
    font-size: 1.8rem;
    color: #004d43; 
    margin-bottom: 5px;
}

.booking-modal-header p {
    font-size: 0.9rem;
    color: #667788;
}

.modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-form-grid .full-width {
    grid-column: span 2;
}

.booking-modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-modal-form label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0c2b4a;
    letter-spacing: 0.5px;
}

.booking-modal-form input, 
.booking-modal-form select {
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    background: #ffffff;
    font-size: 0.9rem;
    transition: box-shadow 0.3s ease;
}

.booking-modal-form input:focus, 
.booking-modal-form select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 77, 67, 0.1);
    border-color: #004d43;
}

.modal-submit-btn {
    width: 100%;
    background-color: #004d43;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.modal-submit-btn:hover {
    background-color: #00332d;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 77, 67, 0.2);
}

/* Success Message */
.booking-success-msg {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 3.5rem;
    color: #004d43;
    margin-bottom: 15px;
}

.booking-success-msg h3 {
    font-size: 1.6rem;
    color: #0c2b4a;
    margin-bottom: 10px;
}

.modal-close-btn {
    background: transparent;
    border: 2px solid #004d43;
    color: #004d43;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 650px) {
    .modal-form-grid { grid-template-columns: 1fr; gap: 10px; }
    .modal-form-grid .full-width { grid-column: auto; }
    .booking-modal-content { padding: 30px 20px; border-radius: 25px; }
    .booking-modal-header h2 { font-size: 1.5rem; }
    .booking-modal-header { margin-bottom: 20px; }
}


/* ========================
   PRIVACY POLICY PAGE
   ======================== */
.privacy-section {
    padding: 100px 0;
    background-color: #d1e0eb;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-title {
    font-size: 3rem;
    color: #004d43;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.privacy-date {
    font-size: 1rem;
    color: #667788;
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.privacy-card {
    background-color: #b2c7cc;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
}

.privacy-card h3 {
    color: #0c2b4a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.privacy-card h3 i {
    color: #004d43;
}

.privacy-card p {
    color: #445566;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-card a {
    color: #004d43;
    font-weight: 600;
    text-decoration: none;
}

.privacy-card a:hover {
    text-decoration: underline;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.privacy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #445566;
    line-height: 1.5;
}

.privacy-list li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #004d43;
    font-weight: bold;
}

.highlight-text {
    font-weight: 600;
    color: #0c2b4a !important;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .privacy-section { padding: 60px 0; }
    .privacy-title { font-size: 2.2rem; }
    .privacy-card { padding: 30px; border-radius: 25px; }
}

/* ============================
   FORM VALIDATION & FEEDBACK
   ============================ */
.is-invalid {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1) !important;
    background-color: #fff9f9 !important;
}

/* Contact Success Message */
.contact-success-msg {
    text-align: center;
    padding: 60px 40px;
    background: #b2c7cc;
    border-radius: 40px;
    animation: fadeIn 0.6s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-success-msg .success-icon {
    font-size: 5rem;
    color: #004d43;
    margin-bottom: 25px;
}

.contact-success-msg h3 {
    font-size: 2.2rem;
    color: #0c2b4a;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.contact-success-msg p {
    font-size: 1.1rem;
    color: #445566;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .contact-success-msg { padding: 40px 20px; border-radius: 25px; }
    .contact-success-msg h3 { font-size: 1.8rem; }
    .contact-success-msg .success-icon { font-size: 4rem; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/*VideoSlider section*/
.video-section {
    background: #0c1f17;
    padding: 50px 20px;
    text-align: center;
}

.video-gallery-section {
    padding: 100px 0;
    background: #d1e0eb;
}

    .video-gallery-section .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .video-gallery-section .section-header h2 {
            font-size: 3rem;
            color: #004d43;
            margin-bottom: 10px;
        }

        .video-gallery-section .section-header p {
            color: #555;
            font-size: 1.1rem;
        }

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

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 450px;
    background: #000;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    transition: all .4s ease;
}

    .video-card:hover {
        transform: translateY(-8px);
    }

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,77,67,.6), rgba(0,77,67,.1) );
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-overlay i {
        color: white;
        font-size: 4rem;
        opacity: .9;
    }

.video-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.view-all-videos-btn {
    display: inline-block;
    background: #004d43;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    transition: .3s;
}

    .view-all-videos-btn:hover {
        background: #00362f;
        transform: translateY(-3px);
    }

@media(max-width:992px) {
    .video-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

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

    ```
    .video-card {
        height: 220px;
    }

    .video-gallery-section .section-header h2 {
        font-size: 2rem;
    }

    
}

.about-section {
    background-image: url('/images/dh.jpg'); /* apni image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
}
    .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.45); /* was 0.75 → now lighter */
        z-index: 1;
    }
    .about-section .container {
        position: relative;
        z-index: 2;
    }

    .about-section .container,
    .about-content,
    .section-title-wrapper {
        position: relative;
        z-index: 2;
    }
.about-section {
    color: #1a1a1a;
}
.about-title,
.about-lead,
.about-text,
.section-title {
    color: #111;
}