/* ============================================
   Shree Sneha Kashi Yatra Care - Main Stylesheet
   ============================================ */

/* Color Scheme */
:root {
    --primary-color: #7b271c;
    --secondary-color: #1a92c4;
    --accent-color: #db9a40;
    --dark-color: #1A1A2E;
    --light-color: #F5F7FA;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-primary: #7b271c;
    --gradient-secondary: #1a92c4;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    font-weight: 500;
}

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

/* Header & Navigation */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.desktop-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.desktop-menu a:hover {
    color: var(--accent-color);
}

.desktop-menu a.active {
    color: var(--primary-color);
}

.desktop-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* General nav-menu for backward compatibility */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--accent-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Sidebar Menu */
.mobile-sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

body.menu-open {
    overflow: hidden;
}

.mobile-sidebar-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: var(--white);
    border-bottom: 1px solid rgba(123, 39, 28, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-right: 15px;
}

.mobile-logo-img {
    height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.mobile-menu-close {
    background: var(--primary-color);
    border: none;
    font-size: 1.1rem;
    color: var(--white);
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(123, 39, 28, 0.2);
}

.mobile-menu-close:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(123, 39, 28, 0.3);
}

.mobile-menu-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
    opacity: 0.5;
}

/* Mobile Sidebar Menu Items */
.mobile-nav-menu,
.mobile-sidebar-menu .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    list-style: none;
    margin: 0;
}

.mobile-nav-menu li,
.mobile-sidebar-menu .nav-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu a,
.mobile-sidebar-menu .nav-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    text-decoration: none;
    position: relative;
}

.mobile-nav-menu a span,
.mobile-sidebar-menu .nav-menu a span {
    display: inline-block;
    position: relative;
}

.mobile-nav-menu a:hover,
.mobile-sidebar-menu .nav-menu a:hover {
    color: var(--accent-color);
}

.mobile-nav-menu a.active,
.mobile-sidebar-menu .nav-menu a.active {
    color: var(--primary-color);
}

.mobile-nav-menu a.active span::after,
.mobile-sidebar-menu .nav-menu a.active span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.mobile-menu-social {
    padding: 12px 15px;
    background: var(--white);
    margin-top: 25px;
    border-top: 1px solid rgba(123, 39, 28, 0.2);
}

.mobile-menu-social h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 8px;

}

.mobile-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-social-links a {
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(123, 39, 28, 0.3);
}

.mobile-social-links a:nth-child(4) {
    border-color: #25d366;
    color: #25d366;
}

.mobile-social-links a:nth-child(4):hover {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.mobile-social-links a:nth-child(3) {
    border-color: #FF0000;
    color: #FF0000;
}

.mobile-social-links a:nth-child(3):hover {
    background: #FF0000;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-slide-1 {
    background-image: url('assets/images/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-2 {
    background-image: url('assets/images/slider2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-3 {
    background-image: url('assets/images/slider3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slider Navigation Buttons */
/* Slider Navigation Buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.slider-nav-btn i {
    pointer-events: none;
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Section Styles */
.section {
    padding: 20px 0;
}

/* About Section Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 0;
}

.about-label {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.25;
    font-weight: 800;
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.spiritual-greeting {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Clean card look */
    border: 1px solid #f0f0f0;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(123, 39, 28, 0.1);
}

.highlight-icon {
    width: 55px;
    height: 55px;
    background: rgba(123, 39, 28, 0.1);
    /* Light primary */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.highlight-item:hover .highlight-icon {
    background: var(--primary-color);
    color: var(--white);
}

.highlight-content {
    flex: 1;
}

.highlight-content h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.highlight-tag {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-about {
    padding: 15px 35px;
    border-radius: 50px;
}

.btn-about i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-about:hover i {
    transform: translateX(5px);
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    padding: 15px;
    background: var(--primary-color);
    border-radius: 20px;
    clip-path: polygon(0% 5%,
            5% 0%,
            95% 0%,
            100% 5%,
            100% 95%,
            95% 100%,
            5% 100%,
            0% 95%);
    transition: all 0.3s ease;
}

.about-image-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(123, 39, 28, 0.3);
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    min-height: 400px;
}

/* Book Your Stay Section */
.book-stay-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    margin: 0;
}

.book-stay-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(123, 39, 28, 0.6);
    z-index: 1;
}

.book-stay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.book-stay-label {
    display: inline-block;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
}

.book-stay-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.book-stay-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.book-stay-section .btn-book-now {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
}

.book-stay-section .btn-book-now i {
    font-size: 1rem;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-book-now:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-book-now i {
    font-size: 1rem;
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    padding: 0 20px;
    z-index: 999;
    max-width: 100%;
    pointer-events: none;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    flex: 0 0 auto;
    pointer-events: auto;
    cursor: pointer;
}

.floating-phone {
    background: var(--primary-color);
    order: 1;
}

.floating-whatsapp {
    background: #25d366;
    order: 2;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(123, 39, 28, 0.6);
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.section-title .section-label {
    display: block;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '✻ ✻ ✻';
    /* Decorative stars */
    display: block;
    text-align: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 15px;
    letter-spacing: 10px;
}

/* Page Header (Common for Subpages) */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    /* Content above overlay */
}

.page-header-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Services Page Header Zoom Effect */
.services-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/services_header.png');
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6);
    transform: scale(1.1);
    transition: transform 8s ease-in-out;
    z-index: 0;
    animation: headerZoom 20s ease-in-out infinite alternate;
}

@keyframes headerZoom {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}

.services-page-header:hover::before {
    transform: scale(1.3);
    filter: brightness(0.7);
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }

    .page-header-content h2 {
        font-size: 2.5rem;
    }

    .page-header-content p {
        font-size: 1.1rem;
    }
    
    .page-header::before {
        background-size: 150%;
        animation: none;
    }
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Preview Section (Redesigned) */
.services-preview-section {
    background-color: var(--white);
    padding: 100px 0;
}

.services-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-list-container {
    padding-right: 20px;
}

.service-list-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(123, 39, 28, 0.1);
}

.service-list-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.service-list-item:hover .service-list-icon {
    background: var(--accent-color);
}

.service-list-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-list-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.services-image-container {
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    /* Align cutout to bottom */
    justify-content: center;
}

.service-preview-img-wrapper {
    height: 100%;
    width: 100%;
    /* border-radius and overflow removed/overridden inline for cutout */
    position: relative;
    display: flex;
    align-items: flex-end;
}

.service-side-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    /* Changed from cover to contain for cutout */
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    /* Add shadow to the subject itself */
}

.service-preview-img-wrapper:hover .service-side-image {
    transform: scale(1);
}

/* Services Page Image Zoom Effect */
.services-image-container:hover .service-side-image {
    transform: scale(1);
}

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

    .services-image-container {
        min-height: 400px;
        order: -1;
        /* Image on top for tablet/mobile */
        margin-bottom: 30px;
    }
    
    .services-image-container .service-side-image {
        min-height: 400px !important;
        transform: scale(1.05) !important;
    }
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Statistics Section */
.stats-section {
    background: url('../images/stats_background_bright.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    /* Milky white to match card theme */
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(123, 39, 28, 0.2);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
    color: var(--primary-color);
    /* Dark text for light card */
    text-shadow: none;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section (Redesigned) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(123, 39, 28, 0.03);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(123, 39, 28, 0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(123, 39, 28, 0.2);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(123, 39, 28, 0.3);
    transition: all 10s linear infinite;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-color);
    box-shadow: 0 15px 30px rgba(219, 154, 64, 0.3);
}

.feature-item:hover .feature-icon::after {
    border-color: rgba(219, 154, 64, 0.4);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Section (Redesigned) */
.contact-section {
    padding: 80px 0;
    overflow: hidden;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    /* Form slightly wider or balanced */
    gap: 60px;
    align-items: center;
}

/* Contact Form Card */
.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-heading {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subheading {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.modern-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.modern-form .form-control:focus {
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    /* Gold/Yellow-ish */
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(219, 154, 64, 0.3);
}

.btn-submit:hover {
    background: #e6a445;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 154, 64, 0.4);
}

/* Right Side Content */
.contact-info-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info-block {
    margin-top: 30px;
}

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

.info-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.info-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-details-list {
    list-style: none;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    /* Align top for multi-line address */
    gap: 20px;
    margin-bottom: 25px;
}

.contact-details-list li i {
    font-size: 1.2rem;
    color: var(--text-dark);
    /* Icon color dark grey as per image */
    margin-top: 5px;
    min-width: 25px;
}

.contact-details-list li span {
    font-size: 1.1rem;
    color: var(--text-light);
    /* Or slightly darker */
    font-weight: 600;
    line-height: 1.6;
}

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

    .contact-form-wrapper {
        order: -1;
        /* Form on top for mobile */
    }

    .contact-info-content {
        order: 1;
        text-align: left;
    }

    .contact-info-content h2 {
        font-size: 1.8rem;
        text-align: left;
    }

    .contact-desc {
        font-size: 0.9rem;
        text-align: left;
    }

    .contact-info-content h3 {
        font-size: 1.2rem;
        text-align: left;
    }

    .contact-details-list li span {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .form-heading {
        font-size: 1.3rem;
    }

    .form-subheading {
        font-size: 0.85rem;
    }

    .info-header {
        justify-content: flex-start;
    }

    .contact-details-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .section-title {
        margin-bottom: 30px !important;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact-split-layout {
        gap: 25px;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .form-heading {
        font-size: 1.2rem;
    }

    .form-subheading {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .contact-info-content {
        text-align: left;
    }

    .contact-info-content h2 {
        font-size: 1.5rem;
        text-align: left;
    }

    .contact-desc {
        font-size: 0.85rem;
        text-align: left;
    }

    .contact-info-content h3 {
        font-size: 1.1rem;
        text-align: left;
    }

    .contact-details-list li span {
        font-size: 0.85rem;
    }

    .info-header {
        justify-content: flex-start;
    }

    .contact-details-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .section-title {
        margin-bottom: 25px !important;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Room Cards */
.room-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.room-image {
    width: 100%;
    height: 250px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    transition: all 0.3s ease;
}

.room-card:hover .room-image {
    background: var(--accent-color);
}

.room-content {
    padding: 25px;
}

/* About Page Specifics */
.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(219, 154, 64, 0.3);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(219, 154, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(10deg);
}

.value-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.room-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.room-features {
    list-style: none;
    margin: 15px 0;
}

.room-features li {
    padding: 5px 0;
    color: var(--text-light);
}

.room-features li i {
    color: var(--accent-color);
    margin-right: 8px;
}

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

/* Booking Form Sidebar */
.booking-sidebar {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.booking-summary {
    margin-bottom: 30px;
}

.booking-summary h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Donation Schemes */
.donation-schemes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.donation-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.donation-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.donation-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
}

/* Trust Info */
.trust-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.bank-details {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.bank-details h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bank-details p {
    margin: 10px 0;
    color: var(--text-dark);
}

.qr-code {
    text-align: center;
    margin: 30px 0;
}

.qr-code img {
    max-width: 200px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    background: var(--white);
}

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(123, 39, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card:hover .contact-icon-wrapper i {
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-main-info {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-sub-info {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Google Maps */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

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

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;

}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    background: white;
    /* Optional: if logo is dark transparent, white bg helps. Adjust based on logo */
    padding: 5px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

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

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

.footer-section a:hover {
    color: var(--white);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left {
    margin: 0;
}

.footer-right {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide desktop menu on mobile */
    .desktop-menu {
        display: none !important;
    }

    /* Ensure mobile menu is hidden by default */
    .mobile-sidebar-menu {
        display: flex;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-image-frame {
        clip-path: polygon(0% 3%,
                3% 0%,
                97% 0%,
                100% 3%,
                100% 97%,
                97% 100%,
                3% 100%,
                0% 97%);
    }

    .about-highlights {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .highlight-item {
        padding: 15px;
        gap: 12px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .highlight-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .highlight-tag {
        font-size: 0.75rem;
    }

    .book-stay-section {
        min-height: 400px;
        padding: 60px 0;
    }

    .book-stay-content h2 {
        font-size: 2rem;
    }

    .services-preview-section {
        padding: 60px 0;
    }

    .services-preview-header {
        margin-bottom: 40px;
    }

    .services-preview-image {
        margin-top: 30px;
    }

    .services-image {
        max-width: 100%;
        border-radius: 10px;
    }

    .services-grid {
        margin-bottom: 30px;
    }

    .services-preview-footer {
        margin-top: 30px;
    }

    .services-preview-footer .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .book-stay-description {
        font-size: 1rem;
    }

    .btn-book-now {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .floating-contact-buttons {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 0 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-sidebar {
        position: static;
        margin-top: 30px;
    }

    /* Form fixes for mobile */
    .form-control {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 12px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .card {
        padding: 20px;
        overflow-x: hidden;
    }

    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }

    .hero-slider {
        height: 400px;
    }

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

    /* Additional form fixes for small screens */
    .form-control {
        padding: 10px;
        font-size: 16px;
    }

    .card {
        padding: 15px;
    }

    .container {
        padding: 0 10px;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        max-width: 100%;
    }
}

/* Mission & Vision Section Redesign */
.mv-wrapper {
    padding: 20px 0;
}

.mv-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    position: relative;
}

.mv-row.reverse {
    flex-direction: row-reverse;
}

.mv-image {
    flex: 1;
    position: relative;
}

.mv-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.mv-image:hover img {
    transform: translateY(-10px);
}

/* Decorative background behind image */
.mv-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.mv-row.reverse .mv-image::before {
    left: auto;
    right: -20px;
}

.mv-image:hover::before {
    top: 30px;
    left: -30px;
    opacity: 1;
}

.mv-row.reverse .mv-image:hover::before {
    left: auto;
    right: -30px;
}

.mv-content {
    flex: 1;
    padding: 20px;
}

.mv-icon-box {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 1px solid rgba(219, 154, 64, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.mv-icon-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed var(--accent-color);
    animation: spin 10s linear infinite;
    opacity: 0.5;
}

.mv-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.mv-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 992px) {

    .mv-row,
    .mv-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .mv-image::before {
        display: none;
        /* Hide decoration on mobile for cleaner look */
    }
}

/* Rooms Page Premium Styling */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.room-card-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.room-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.room-image-frame {
    /* Since we can't generate images, we use a styled placeholder or fallback */
    height: 220px;
    background: #f5f5f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.room-image-frame i {
    font-size: 5rem;
    color: rgba(219, 154, 64, 0.3);
}

.room-price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.room-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.room-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features-list {
    list-style: none;
    margin: 0 0 25px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.room-features-list li {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-features-list li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.book-btn-premium {
    margin-top: auto;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-btn-premium:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Mission & Vision Text-Only Redesign */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(219, 154, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.mv-card:hover .mv-card-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

/* Room List Layout (Alternating) */
.room-list-item {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    transition: all 0.4s ease;
    border: 1px solid rgba(123, 39, 28, 0.1);
}

.room-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.room-list-item.reverse {
    flex-direction: row-reverse;
}

.room-list-image {
    width: 50%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background: #f5f5f5;
}

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

.room-list-item:hover .room-list-image img {
    transform: scale(1.05);
}

.room-list-content {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: var(--white);
}

.room-list-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.room-list-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.room-list-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 10px;
}

.room-list-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.room-list-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    background: rgba(123, 39, 28, 0.05);
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 39, 28, 0.1);
}

.room-feature:hover {
    background: rgba(123, 39, 28, 0.1);
    transform: translateY(-2px);
}

.room-feature i {
    color: var(--accent-color);
}

.btn-book-room {
    align-self: flex-start;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 39, 28, 0.2);
}

.btn-book-room:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 39, 28, 0.3);
}

@media (max-width: 992px) {

    .room-list-item,
    .room-list-item.reverse {
        flex-direction: column;
    }

    .room-list-image,
    .room-list-content {
        width: 100%;
    }

    .room-list-image {
        height: 300px;
        min-height: 300px;
    }

    .room-list-image img {
        min-height: 300px;
    }

    .room-list-content {
        padding: 30px;
    }

    .room-list-content h3 {
        font-size: 1.8rem;
    }

    .room-list-price {
        font-size: 1.6rem;
    }
}

/* Room Card Grid Layout */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.room-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: auto;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(123, 39, 28, 0.15);
}

.room-card-image {
    width: 100%;
    /* height: 350px; */
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

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

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

.room-card-content {
    padding: 12px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-type {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.room-description {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
}

.room-info {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    padding: 8px 10px;
    background: rgba(123, 39, 28, 0.03);
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.room-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
    flex: 1;
}

.room-info-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.7rem;
}

.room-info-value {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

.room-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #dc3545;
    margin-bottom: 8px;
    text-align: center;
    padding: 6px;
    background: rgba(220, 53, 69, 0.06);
    border-radius: 6px;
}

.btn-book-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(123, 39, 28, 0.2);
}

.btn-book-now:hover {
    background: #5a1f15;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(123, 39, 28, 0.35);
    color: var(--white);
}

.btn-book-now i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-book-now:hover i {
    transform: translateX(4px);
}

/* Rooms Amenities Grid */
.rooms-amenities-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-card {
        height: auto;
    }
    
    /* .room-card-image {
        height:400px;
    } */
    
    .room-card-content {
        padding: 16px;
    }
    
    .room-info {
        gap: 10px;
    }

    .rooms-amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rooms-amenities-grid .feature-item {
        padding: 25px 15px;
    }

    .rooms-amenities-grid .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .rooms-amenities-grid h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .rooms-amenities-grid p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .section-title {
        margin-bottom: 30px !important;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }
}

/* Contact Page Social Links */
.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-social-btn i {
    color: white !important;
    transition: all 0.3s ease;
}

.contact-social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-social-btn:hover i {
    transform: scale(1.1);
}