/* 
    Labanya Homes Custom CSS 
    Design from scratch 
*/

:root {
    --primary-color: #6a949d; /* Teal Blue */
    --secondary-color: #4a6b72;
    --accent-color: #c19a6b; /* Earthy Wood/Gold */
    --accent-hover: #b0895a;
    --text-color: #333333;
    --text-muted: #666666;
    --bg-light: #f9faf9;
    --bg-white: #ffffff;
    --border-color: #e2e8e2;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

/* Reset & Typography */
body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-top: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Custom Buttons */
.btn-labanya {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 30px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn-labanya:hover {
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    animation: pulse-book-now 2s infinite;
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-color);
    animation: none;
}

/* Book Now Navbar Button */
.book-now-btn a {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 20px;
    margin-left: 15px;
    animation: pulse-book-now 2s infinite;
}

.book-now-btn a:hover {
    background-color: #a88152 !important;
    animation: none;
}

@keyframes pulse-book-now {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(193, 154, 107, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(193, 154, 107, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(193, 154, 107, 0); }
}

/* Navbar from scratch */
.labanya-header {
    background-color: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Slider Classes */
.hero-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}
.hero-content .btn-accent {
    font-size: 16px; 
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .hero-slide {
        aspect-ratio: 16 / 9;
        height: auto;
    }
}

.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar a {
    color: #fff;
    margin-right: 20px;
}

.top-bar i {
    margin-right: 5px;
    color: var(--accent-color);
}

.main-nav {
    padding: 15px 0;
}

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

.brand-logo h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.brand-logo a {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
}

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

.nav-links .book-now-btn a {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
}

.nav-links .book-now-btn a:hover {
    background-color: var(--accent-hover);
    color: #fff;
}

/* Footer from scratch */
.labanya-footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-col h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col p {
    color: #e2e8e2;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-col i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #e2e8e2;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    color: #aebfab;
    font-size: 14px;
}

/* Section Utilities */
.section-padding {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 24, 32, 0.6);
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

/* Cards */
.card-minimal {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.card-minimal:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Forms */
.form-control {
    height: 50px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(59, 90, 65, 0.25);
}

textarea.form-control {
    height: auto;
}

/* Responsive Nav */
.hamburger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-color);
}

.sidenav {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: -250px;
    background-color: var(--primary-color);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.5);
}

.sidenav a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: #cbd5c8;
    display: block;
    transition: 0.3s;
    font-family: var(--font-heading);
}

.sidenav a:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 36px;
    margin-left: 50px;
    padding: 10px;
}

.sidenav .sidenav-book {
    background-color: var(--accent-color);
    color: #fff;
    margin: 20px 25px;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
}

.sidenav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 99998;
}

@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    .hamburger-menu {
        display: block;
    }
    
    /* Fix slider size for mobile to 16:9 ratio */
    .hero-slide {
        height: 56.25vw !important; /* 16:9 aspect ratio */
        min-height: unset;
    }
    .hero-content h1 {
        font-size: 12px !important;
        margin-top: 0;
        margin-bottom: 2px !important;
    }
    .hero-content p {
        font-size: 10px !important;
        margin-bottom: 8px !important;
    }
    .hero-content .btn-labanya {
        font-size: 9px !important;
        padding: 5px 12px !important;
        border-width: 1px !important;
        letter-spacing: 0.5px;
    }
    .page-banner h1 {
        font-size: 32px !important;
    }
    .carousel-control {
        width: 10%;
    }
    
    /* General Mobile Paddings */
    .section-padding {
        padding: 50px 0;
    }
    .col-md-6, .col-md-5, .col-md-7 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    h2 {
        font-size: 32px !important;
    }
}

/* Premium Carousel Fade Transition */
.carousel-fade .carousel-inner .item {
    transition-property: opacity;
}
.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}
.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}
.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    transform: translate3d(0, 0, 0);
}
.carousel-control {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.carousel:hover .carousel-control {
    opacity: 0.8;
}
.carousel-control:hover {
    opacity: 1 !important;
}

/* Premium micro-animations */
.card-minimal img {
    transition: transform 0.5s ease;
}
.card-minimal:hover img {
    transform: scale(1.03);
}

/* Footer Styles */
.labanya-footer {
    padding: 80px 0 30px;
    margin-top: 0;
    background-color: #4a6b72;
    border-top: 4px solid var(--accent-color);
}
.footer-col {
    margin-bottom: 40px;
}
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
}
.footer-heading-sm {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 25px;
    color: #fff;
}
.footer-text {
    font-size: 15px;
    color: #cbd5c8;
    line-height: 1.8;
}
.footer-social-box {
    margin-top: 25px;
}
.footer-social-icon {
    display: inline-block;
    text-align: center;
    line-height: 36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}
.footer-social-icon i {
    line-height: 36px;
}
.footer-social-icon:last-child {
    margin-right: 0;
}
.footer-social-icon:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #cbd5c8;
    display: flex;
    align-items: center;
}
.footer-links a i {
    margin-right: 8px;
    color: var(--accent-color);
    width: auto;
}
.footer-links a:hover {
    color: var(--accent-color) !important;
}
.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}
.footer-contact-item i {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}
.footer-contact-item p {
    margin: 0;
    color: #cbd5c8;
    font-size: 15px;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 20px;
    padding-top: 30px;
    color: #8e9c8e;
    font-size: 14px;
}
.footer-bottom p {
    margin: 0;
}
.footer-bottom i {
    color: var(--accent-color);
    font-size: 12px;
    margin: 0 3px;
}
.btn-footer-book {
    padding: 8px 20px;
    font-size: 13px;
}
.mobile-bar-btn-call { background-color: var(--primary-color); }
.mobile-bar-btn-wa { background-color: #25D366; }
.mobile-bar-btn-book { background-color: var(--accent-color); }

/* Sticky Buttons Styles */
.sticky-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-animation 2s infinite;
}
.sticky-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
    animation: none; /* stop pulse on hover */
}
.wa-btn {
    background-color: #25D366; /* WhatsApp Green */
}
.call-btn {
    background-color: var(--primary-color); /* Labanya Green */
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Call button specific pulse shadow color */
.call-btn {
    animation-name: pulse-call;
}
@keyframes pulse-call {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 90, 65, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(59, 90, 65, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 90, 65, 0); }
}

/* Mobile Sticky Bar */
.mobile-only {
    display: none;
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 99999;
}
.mobile-bar-btn {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    color: #fff !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex;
    }
    /* Add padding to body so the bar doesn't overlap footer content */
    body {
        padding-bottom: 45px;
    }
}

/* Reach Page Styles */
.reach-banner-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: #e2e8e2;
    font-weight: 300;
}
.reach-section {
    background-color: var(--bg-light);
}
.reach-grid {
    margin-top: 50px;
}
.reach-card-wrap {
    margin-bottom: 40px;
}
.reach-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}
.reach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.reach-icon-box {
    background-color: var(--primary-color);
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reach-icon-box.train-bg { background-color: #4a6b72; }
.reach-icon-box.car-bg { background-color: #a88152; }
.reach-icon-box.bus-bg { background-color: #7baeb8; }
.reach-icon-box i {
    font-size: 50px;
    color: #fff;
}
.reach-content {
    padding: 30px;
    flex-grow: 1;
}
.reach-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 15px;
}
.reach-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}
.route-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.route-list li {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}
.route-list.margin-top {
    margin-top: 15px;
}
.route-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 4px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}
.route-map-text {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.route-node {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.route-map-text i {
    color: var(--accent-color);
}
.reach-map-container {
    margin-bottom: -5px;
}
.reach-map-iframe {
    border: 0;
    filter: grayscale(20%);
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .reach-card {
        flex-direction: column;
    }
    .reach-icon-box {
        width: 100%;
        height: 100px;
    }
}

/* Home Page Styles */
.hero-content h1.hero-title {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p.hero-subtitle {
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.carousel-control.home-ctrl {
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-control.home-ctrl i {
    font-size: 30px;
}
.intro-text-col {
    padding-right: 50px;
}
.intro-text-col h2 {
    font-size: 42px;
    margin-bottom: 30px;
}
.intro-text-col p {
    font-size: 18px;
    margin-bottom: 20px;
}
.intro-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.amenities-section {
    background-color: var(--bg-light);
}
.amenity-card-wrap {
    margin-bottom: 30px;
}
.amenity-card-inner {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.amenity-card-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}
.amenity-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}
.room-card-wrap {
    margin-bottom: 30px;
}
.room-card-link-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}
.room-card-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
}
.exp-section {
    background-color: var(--bg-light);
}
.exp-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.exp-text-col {
    padding-left: 50px;
}
.exp-text-col h2 {
    font-size: 42px;
    margin-bottom: 30px;
}
.exp-text-col p {
    font-size: 18px;
    margin-bottom: 30px;
}
.gallery-card-wrap {
    margin-bottom: 30px;
}
.gallery-card-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-img-style {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.gallery-overlay h4 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-item:hover .gallery-img-style { transform: scale(1.05); }

.modal-content-trans {
    background: transparent;
    border: none;
}
#galleryModal {
    padding-top: 80px !important;
}
.modal-header-trans {
    border: none;
    padding: 0;
}
.modal-close-btn {
    color: #fff;
    text-shadow: none;
    opacity: 1;
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: -30px;
    z-index: 10;
}
.modal-body-rel {
    padding: 0;
    text-align: center;
    position: relative;
}
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 100;
}
.gallery-nav-prev { left: 10px; }
.gallery-nav-next { right: 10px; }
.gallery-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}
.gallery-modal-title {
    color: #fff;
    margin-top: 15px;
}
.gallery-btn-wrap {
    margin-top: 20px;
}
.reach-info-col {
    margin-bottom: 30px;
}
.reach-info-col h2 {
    font-size: 42px;
    margin-bottom: 20px;
}
.reach-info-col p.lead-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}
.reach-options-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.reach-option-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.reach-option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(59, 90, 65, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}
.reach-option-text h4 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
}
.reach-option-text p {
    margin: 0;
    color: #777;
    font-size: 14px;
}
.reach-img-col {
    position: relative;
    padding: 20px;
}
.reach-img-frame {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 40px;
    left: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    z-index: 1;
}
.reach-img-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.cta-section {
    background-color: var(--primary-color);
    color: #fff;
}
.cta-section h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #e2e8e2;
}
.btn-cta-lg {
    font-size: 18px;
    padding: 15px 40px;
}

@media (max-width: 768px) {
    .intro-text-col, .exp-text-col {
        padding: 15px;
    }
    .intro-text-col h2, .exp-text-col h2, .reach-info-col h2 {
        font-size: 32px;
    }
    .cta-section h2 {
        font-size: 36px;
    }
    .cta-section p {
        font-size: 18px;
    }
}

/* Gallery Page Styles */
.gallery-banner-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: #e2e8e2;
    font-weight: 300;
}
.gallery-filters-wrap {
    margin-bottom: 40px;
}
.filter-btn-spacing {
    margin: 0 5px 10px;
}

/* Contact Page Styles */
.contact-banner-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: #e2e8e2;
    font-weight: 300;
}
.contact-info-box {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary-color);
}
.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.contact-info-box p.lead-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}
.contact-info-list li:last-child {
    margin-bottom: 0;
}
.contact-info-icon {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 20px;
    margin-top: 5px;
    width: 24px;
    text-align: center;
}
.contact-info-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}
.contact-info-text span {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-form-wrap {
    padding-top: 20px;
}
.contact-form-title {
    text-align: left;
    margin-bottom: 40px;
}
.contact-form-title h3 {
    font-size: 32px;
    margin-bottom: 10px;
}
.contact-form-title p {
    text-align: left;
    margin: 0;
}
.contact-input-wrap {
    margin-bottom: 25px;
}
.contact-textarea-wrap {
    margin-bottom: 30px;
}
.btn-contact-submit {
    width: 100%;
}
.contact-result {
    margin-top: 15px;
    text-align: center;
}
.contact-map-wrap {
    margin-bottom: -5px;
}
.contact-map-iframe {
    border: 0;
    filter: grayscale(20%);
    width: 100%;
    display: block;
}

/* About Page Styles */
.about-banner-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: #e2e8e2;
    font-weight: 300;
}
.about-text-col {
    padding-right: 50px;
}
.about-text-col h2 {
    font-size: 42px;
    margin-bottom: 30px;
}
.about-text-col p.about-p {
    font-size: 18px;
    margin-bottom: 20px;
}
.about-text-col p.about-p-last {
    font-size: 18px;
    margin-bottom: 30px;
}
.about-callout-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}
.about-callout-box p {
    font-size: 18px;
    color: var(--text-color);
    margin: 0 0 20px 0;
    font-weight: 500;
}
.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-img-main {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    grid-column: 1 / 3;
}
.about-img-sub {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .about-text-col {
        padding-right: 15px;
    }
    .about-text-col h2 {
        font-size: 32px;
    }
}

/* Room Details Modern Styles */
.room-detail-modern-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Photo Grid */
.room-photo-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    height: 400px;
}
.photo-main {
    flex: 2;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}
.photo-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.photo-sub {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .room-photo-grid {
        flex-direction: column;
        height: auto;
    }
    .photo-main {
        height: 250px;
    }
    .photo-side {
        flex-direction: row;
    }
    .photo-sub {
        height: 150px;
    }
}

/* Info Cards */
.room-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.room-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
.room-desc-text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Specs List */
.room-specs-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-color);
}
.spec-item i {
    color: var(--accent-color);
    font-size: 20px;
}

/* Amenities Grid */
.room-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.amenity-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.amenity-item-modern:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(193, 154, 107, 0.1);
}
.amenity-icon {
    width: 40px;
    height: 40px;
    background: rgba(193, 154, 107, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}
.amenity-item-modern span {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Policies */
.policy-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
}
.policy-list li i {
    color: var(--accent-color);
    margin-top: 4px;
}

/* Sidebar Booking Card */
.booking-sidebar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    overflow: hidden;
    margin-bottom: 30px;
}
.booking-price-header {
    background: var(--primary-color);
    color: #fff;
    padding: 25px 30px;
    text-align: center;
}
.price-from {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.9;
}
.price-amount {
    font-size: 36px;
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 700;
}
.price-amount span {
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    opacity: 0.9;
}
.booking-form-modern {
    padding: 30px;
}
.booking-form-modern label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.modern-input {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px 15px;
    height: auto;
    font-size: 15px;
    color: var(--text-color);
    box-shadow: none;
    transition: border-color 0.3s;
    width: 100%;
}
.modern-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
    outline: none;
}
.btn-book-modern {
    background: var(--accent-color);
    color: #fff;
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
}
.btn-book-modern:hover {
    background: #a88151;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}
.booking-result-message {
    margin-top: 15px;
    font-size: 14px;
}

/* Active Nav Link Highlighting */
.nav-links li.active a {
    color: var(--accent-color);
    position: relative;
}
.nav-links li.active a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}
.nav-links li.active.book-now-btn a {
    color: #fff !important;
}
.nav-links li.active.book-now-btn a::after {
    display: none;
}
.sidenav a.active {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    border-left: 4px solid var(--accent-color);
}

