@import url('https://fonts.googleapis.com/css?family=Roboto:100');

/* --- General Site Styles --- */
.full-width-header .rs-header .menu-area .logo-area img {
    transition: 0.4s;
    -webkit-transition: 0.4s;
    max-height: 59px !important;
}
.rs-footer { 
    background: #ce9b37 !important; 
}
.header-slider-des { 
    background-color: #000182; 
    display: -webkit-inline-box; 
    padding: 10px; 
}
.rs-freequote.style3 .quote-form { 
    background: none; 
    padding: 0; 
}
.quote-select { 
    width: 100%; 
    border: none; 
    outline: none; 
    margin-bottom: 30px; 
    color: #ffffff; 
    background: #c5c5eb; 
    font-size: 16px; 
    padding: 11px 20px; 
}
.rs-freequote.style3 .quote-form button { 
    color: #ffffff; 
    background: #000182; 
    font-weight: 400; 
    font-family: 'Roboto', sans-serif; 
}

/* --- Booking Buttons --- */
.booking-sidebar {
    position: sticky;
    top: 32px;
    align-self: flex-start;
    max-width: 340px;
    margin-left: auto;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 1.75rem 1.25rem 1.5rem 1.25rem;
    z-index: 2;
}
@media (max-width: 900px) {
    .booking-sidebar {
        position: static;
        max-width: 100%;
        margin: 2rem 0 0 0;
        border-radius: 14px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.06);
        padding: 1.25rem 1rem;
    }
}
.btn-booking-primary {
    display: block; width: 100%; text-align: center; background-color: #000182; color: white; font-weight: bold; padding: 0.75rem 1rem; border-radius: 0.25rem; margin-bottom: 0.75rem; transition: background-color 0.3s;
}
.btn-booking-primary:hover { background-color: #000182; color: white; }

.btn-secondary {
    display: block; width: 100%; text-align: center; background-color: #000182; color: white; font-weight: bold; padding: 0.75rem 1rem; border-radius: 0.25rem; transition: background-color 0.3s;
}
.btn-secondary:hover { background-color: #000182; color: white; }

/* .sec-title { 
    margin-top: 24px; 
    margin-bottom: 0px; 
    font-size: 36px; 
    font-weight: 700; 
    line-height: 46px; 
    font-family: 'Roboto', sans-serif; 
} */
.sec-title .sub-title { 
    font-size: 20px; 
    font-weight: 400; 
    display: block; 
    margin-bottom: 5px; 
    line-height: 28px; 
    font-family: 'Roboto', sans-serif; 
    color: #000182; 
}

/* --- Global Layout Fixes --- */
html, body.defult-home {
    height: 100%;
}
body.defult-home {
    display: flex;
    flex-direction: column;
}
body.defult-home > .main-content {
    flex: 1 0 auto;
}
body.defult-home > .rs-footer {
    flex-shrink: 0;
}

/* --- Main Content Grid Layout --- */
.main-layout-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 2rem; 
}
@media (min-width: 1024px) { 
    .main-layout-grid { 
        grid-template-columns: 2fr 1fr; 
    } 
}

/* --- Main Page Image Gallery Grid --- */
.image-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    max-width: 900px;
    position: relative;
    background: #fff;
}
.image-gallery-grid .main-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
}
.image-gallery-grid .sub-images {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
    min-height: 0;
}
.image-gallery-grid .sub-image-container {
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
}
.image-gallery-grid .sub-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}
.image-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s ease;
    border-radius: 0;
}
.image-gallery-grid .main-image img {
    border-radius: 16px 0 0 16px;
}
.image-gallery-grid .sub-image-container:nth-child(2) img {
    border-radius: 0 16px 0 0;
}
.image-gallery-grid .sub-image-container:nth-child(4) img {
    border-radius: 0 0 16px 0;
}
.image-gallery-grid .sub-image-container img {
    border-radius: 0;
}

.image-gallery-grid .gallery-item:hover img {
    opacity: 0.85;
}
.show-all-photos-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: white;
    color: black;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #333;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}
.show-all-photos-btn:hover {
    background-color: #f0f0f0;
}
@media (max-width: 768px) {
    .image-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .image-gallery-grid .main-image {
        grid-row: 1 / 2;
        border-radius: 12px;
    }
    .image-gallery-grid .sub-images {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        border-radius: 12px;
    }
}

/* --- Full-Screen Lightbox Modal --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}
.lightbox-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.focused-image {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}
.lightbox-close:hover {
    color: #bbb;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
.image-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}
.show-grid-btn, .back-to-image-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: black;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #333;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}
.show-grid-btn:hover, .back-to-image-btn:hover {
    background-color: #f0f0f0;
}
.thumbnail-grid-view {
    display: none;
    padding: 60px 20px;
    overflow-y: auto;
    max-height: 100vh;
}
.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.thumbnail-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}
.thumbnail-image:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

/* --- Location & Map Section --- */
#location-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
#map-container {
    height: 480px;
    width: 100%;
    border-radius: 12px;
    margin-top: 1rem;
    background-color: #e9e9e9;
}

/* --- Email Booking Modal --- */
.email-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}
.email-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
}
.email-modal-close {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 28px;
    font-weight: bold;
}
.email-modal-close:hover,
.email-modal-close:focus {
    color: black;
    cursor: pointer;
}
.email-modal h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}
.form-status {
    margin-top: 1rem;
    font-weight: 500;
}
.form-status.success {
    color: #28a745;
}
.form-status.error {
    color: #dc3545;
}

/* --- Amenities Section --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}
.amenity-item .amenity-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}
.show-amenities-btn {
    background-color: #fff;
    color: #222;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 13px 23px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    margin-top: 1.5rem;
}
.show-amenities-btn:hover {
    background-color: #f0f0f0;
}

/* --- Blog Styles --- */
.blog-title {
    font-family: 'Roboto', sans-serif;
    color: black;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 300;
}
.blog-detail-content {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
.blog-detail-title {
    font-family: 'Roboto', sans-serif;
    color: black;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 300;
}
.blog-meta {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: black;
}
.content-part {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #000000;
}
.content-part .sl-desc {
    color: #ce9b37;
    font-weight: bolder;
}
.info-wrap .content-part {
    color: #ce9b37;
    font-weight: bolder;
}
.rs-testimonial .testi-item {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    box-shadow: none;
}
.rs-testimonials .icon-part {
    font-size: 1.5rem;
    color: #000000;
}
.rs-testimonials .desc {
    font-style: italic;
}
.rs-testimonials .posted-by {
    margin-top: 1rem;
}
.rs-testimonials .name {
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}
.rs-testimonials .designation {
    display: block;
    font-size: 0.875rem;
    color: #000000;
}

/* --- Form Styles --- */
.form-label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.form-control:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
}
.btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
}
.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0056b3;
    border-color: #004085;
}
.text-danger {
    color: #dc3545;
}
.service-select {
    background-color: #f0f8ff;
    border: 1px solid #007bff;
    color: #333;
    padding: 0.75rem;
    border-radius: 0.25rem;
    font-size: 1rem;
}
.service-select:focus {
    background-color: #c5c5eb;
    border-color: #0056b3;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
}
.form-container1 {
    margin-left: 20px;
    margin-right: 20px;
}
.form-control {
    padding-left: 1rem;
    background: #c5c5eb;
}
textarea.form-control {
    padding-left: 1rem;
}
.quote-form {
    margin-left: 20px;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
.service-wrap {
    transition: transform 0.3s ease;
}
.service-wrap:hover .icon-part i {
    animation: shake 0.5s ease;
}
.link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
}
.service-wrap {
    padding: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.mb-16 {
    margin-bottom: 16px;
}

.category-filters {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 20;
    background: rgba(255,255,255,0.96);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 12px 8px;
    gap: 8px;
    min-width: 130px;
}
.category-filter-btn {
    background: none;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.17s, color 0.17s;
    color: #222;
    font-weight: 500;
}
.category-filter-btn.active, .category-filter-btn:hover {
    background: #000182;
    color: #fff;
}
@media (max-width: 800px) {
    .category-filters {
        position: static;
        flex-direction: row;
        width: 100%;
        min-width: 0;
        margin-bottom: 16px;
        box-shadow: none;
        background: none;
        padding: 0;
        gap: 8px;
    }
    .category-filter-btn {
        width: 100%;
        text-align: center;
    }
}

@import url('https://fonts.googleapis.com/css?family=Roboto:100');

/* --- General Site Styles --- */
.full-width-header .rs-header .menu-area .logo-area img {
    transition: 0.4s;
    -webkit-transition: 0.4s;
    max-height: 59px !important;
}
.rs-footer { 
    background: #ce9b37 !important; 
}
.header-slider-des { 
    background-color: #000182; 
    display: -webkit-inline-box; 
    padding: 10px; 
}
.rs-freequote.style3 .quote-form { 
    background: none; 
    padding: 0; 
}
.quote-select { 
    width: 100%; 
    border: none; 
    outline: none; 
    margin-bottom: 30px; 
    color: #ffffff; 
    background: #c5c5eb; 
    font-size: 16px; 
    padding: 11px 20px; 
}
.rs-freequote.style3 .quote-form button { 
    color: #ffffff; 
    background: #000182; 
    font-weight: 400;
}
h1 {
    color: #0a0a0a;
    line-height: 64px;
    font-size: 34px !important;
}
h2 {
    font-size: 30px;
    line-height: 40px;
}