:root {
    /* Colors */
    --primary: #72121D; /* Deep Maroon */
    --primary-light: #8E1C29;
    --primary-gradient: linear-gradient(135deg, #72121D 0%, #8E1C29 100%);
    --secondary: #C5A059; /* Classic Gold */
    --secondary-dark: #A6813C;
    --secondary-light: #D9BD84;
    --secondary-gradient: linear-gradient(135deg, #C5A059 0%, #D9BD84 100%);
    --white: #FFFFFF;
    --off-white: #FDFBF7; /* Even softer cream */
    --dark: #1A1A1A; /* Deeper dark */
    --text-muted: #717171;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    
    /* Spacing */
    --container-width: 1240px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-standard: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

/* Scroll to Top Button */
/* Scroll to Top Button Removed as per request */

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

/* Floating Animation Class */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Custom Selection Color */
::selection {
    background-color: var(--secondary);
    color: var(--white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

footer {
    flex-shrink: 0;
    width: 100%;
    margin-top: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

main {
    min-height: 100vh;
}

section {
    position: relative;
    padding: 80px 0;
}




h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-standard);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 18, 29, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--off-white);
    padding: 15px 0;
    transition: var(--transition-standard);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.site-header.scrolled {
    padding: 10px 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
}



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

.logo img {
    height: 75px;
    width: auto;
}

.main-nav .nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    transition: var(--transition-standard);
}

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

.nav-list a.active {
    color: var(--primary);
}

.btn-book-now {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    font-size: 0.8rem;
    padding: 10px 20px;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

/* Hero Section Consolidated below in Match section */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
}

.hero-subtitle {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    padding-left: 50px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(197, 160, 89, 0.2);
    z-index: -1;
}

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

.hero-divider .line {
    width: 60px;
    height: 1.5px;
    background-color: var(--secondary);
    opacity: 0.6;
}

.hero-divider .ornament {
    height: 35px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(71%) sepia(40%) saturate(541%) hue-rotate(357deg) brightness(88%) contrast(85%); /* Gold color adjustment */
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 500px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-standard);
}

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

.attractions-side h2, .location-side h2 {
    margin-bottom: 25px;
}

/* Hero Section Match */
.hero {
    min-height: 100vh;
    background-image: url('assets/images/home.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px; /* Space for fixed header */
    padding-bottom: 150px; /* Space for floating amenities */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-text-content {
    max-width: 600px;
    color: var(--white);
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-upper-title {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.hero-main-title {
    font-size: 4.8rem; /* Slightly smaller for better balance */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.hero-main-title .gold-text {
    color: var(--secondary);
}

.hero-ornament-line {
    margin-bottom: 30px;
}

.ornament-gold {
    height: 10px;
    width: auto;
}

.hero-description-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
    opacity: 0.85;
}

.hero-button-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-solid-maroon {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-standard);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    border: 2px solid var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-standard);
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-weight: 600;
}

/* Amenities Bar Floating */
.amenities-bar {
    position: absolute;
    bottom: -100px; /* Shifted further down */
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: var(--container-width);
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 10;
    border: 1px solid rgba(184, 134, 11, 0.15);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.amenity-icon img {
    width: 35px;
    height: 35px;
}

.amenity-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.2;
}

.amenity-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .amenities-bar {
        position: relative;
        transform: none;
        width: 100%;
        margin-top: -60px;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Section Generic */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--secondary-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title.centered {
    justify-content: center;
    text-align: center;
}



.section-header.centered {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.section-header.centered .section-title {
    justify-content: center;
}



.title-ornament {
    height: 30px;
    width: auto;
}

/* Rooms Section */
.rooms {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
    z-index: 10;
    margin-top: 60px;
}

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

/* Rooms Section Styling (New Layout) */
.rooms {
    padding: 100px 0;
    background-color: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition-standard);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

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

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

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

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

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

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.per-night {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.btn-gold {
    background-color: #B8860B;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #B8860B, transparent);
    margin: 20px auto 0;
}


.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-item {
    text-align: center;
    padding: 40px 25px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-standard);
    border: 1px solid rgba(184, 134, 11, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.why-icon {
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    transition: var(--transition-standard);
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary);
}

/* Testimonials Marquee Section */
.testimonials {
    padding: 100px 0;
    background-color: #fdfaf5;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
    position: relative;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    padding: 20px 0;
    animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

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

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

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testi-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--dark);
}

.testi-stars {
    color: #ffc107;
    font-size: 0.8rem;
}

.testi-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .location-layout {
        grid-template-columns: 1fr;
    }
    
    .attractions-column, .location-column {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

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



/* Contact Section */
.contact-section {
    padding: 100px 0 160px;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.1);
    margin-bottom: 20px;
}

.contact-info-side {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 60px;
}

.contact-info-side h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-info-side p {
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.method-text p {
    margin-bottom: 0;
    opacity: 1;
    font-size: 0.95rem;
}

.contact-form-side {
    padding: 60px;
}

.contact-form-side h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    background-color: var(--white);
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(114, 18, 29, 0.2);
}

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

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-info-side, .contact-form-side {
        padding: 40px 25px;
    }
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    color: var(--white);
    background-color: var(--primary);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


.user-info strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Location & Attractions */
.location-attractions {
    padding: var(--section-padding);
    background-color: #F9F9F9;
}

.location-attractions .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.attractions-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.attraction-card {
    text-align: center;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.attraction-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.attraction-card h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.distance {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.location-card-wrapper {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.location-details {
    margin-bottom: 30px;
}

.location-details h2 {
    margin-bottom: 20px;
}

.address-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.address-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.address-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.5;
}

.contact-links-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 12px;
    transition: var(--transition-standard);
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-link-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.contact-link-item img {
    width: 20px;
    height: 20px;
}

.btn-directions {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
}

.map-wrapper {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.attractions-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.attractions-column .attraction-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-standard);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.attractions-column .attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.2);
}

.attraction-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(114, 18, 29, 0.03);
    border-radius: 50%;
    transition: var(--transition-standard);
}

.attractions-column .attraction-card:hover .attraction-icon {
    background-color: var(--primary);
}

.attractions-column .attraction-card:hover .attraction-icon img {
    filter: brightness(0) invert(1);
}

.attraction-icon img {
    width: 30px;
    height: 30px;
    transition: var(--transition-standard);
}

.attraction-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.attraction-icon {
    color: var(--primary);
    margin-bottom: 15px;
}

.attraction-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.distance {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.location-info {
    margin-bottom: 30px;
}

.location-info .address {
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 500;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ & Group Booking Layout */
.faq-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.group-booking-card {
    background-color: #FDF7F0;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.group-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.group-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.group-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-group-booking {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    gap: 15px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-standard);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: none;
    width: 100%;
    border: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition-standard);
}

.header-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.plus-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition-standard);
    line-height: 1;
}

.accordion-item.active .plus-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 25px;
}

.accordion-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding-bottom: 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(45deg);
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(114, 18, 29, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-standard);
    color: var(--white);
    font-weight: 600;
}

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

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

/* Floating Action Buttons (New) */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.f-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: var(--transition-standard);
}

.f-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.call-btn {
    background-color: var(--primary);
}

.whatsapp-btn {
    background-color: #25D366;
}

.f-btn img {
    width: 28px;
    height: 28px;
}

/* Ensure no bottom gap */
main, section, footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.site-footer {
    padding-top: 80px !important;
    padding-bottom: 0 !important;
}

.footer-bottom {
    margin-top: 0 !important;
}

/* Why Choose Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    border: 1px solid #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.why-icon {
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FAQ Layout */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plus-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 300;
}

/* Group Booking Card */
.group-booking-card {
    background-color: #F9F3EA; /* Cream background */
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.group-booking-card .group-icon {
    color: var(--secondary);
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.btn-maroon {
    background-color: #5D0F18;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Footer Refined */
/* Footer Styles Refined */
.site-footer {
    background-color: #5D0F18; /* Deep Maroon as per image */
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

/* Add decorative temple pattern to background */
.site-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('assets/images/footer_ornament.png'); /* If available, or use opacity on a generic one */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

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

.footer-grid h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition-standard);
}

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

.footer-facilities ul li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-standard);
}

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


.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #888;
    font-size: 0.9rem;
    transition: var(--transition-standard);
}

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



/* ==========================================================================
   Responsive Styles (Consolidated)
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-main-title { font-size: 4rem; }
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .main-nav { 
        display: none; 
    }
    
    .mobile-menu-toggle { 
        display: flex; 
    }
    
    /* Mobile Nav Active State */
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
        z-index: 999;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .nav-list a {
        font-size: 1.1rem;
    }
    
    .hero-main-title { font-size: 3.5rem; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    
    .hero { 
        padding-top: 120px; 
        padding-bottom: 80px;
        min-height: auto;
        text-align: center; 
    }
    
    .hero-text-content { 
        margin: 0 auto; 
        text-align: center; 
    }
    
    .hero-main-title { 
        font-size: 2.8rem; 
        margin-bottom: 20px;
    }
    
    .hero-description-text {
        margin: 0 auto 30px;
    }
    
    .hero-button-group { 
        justify-content: center; 
        flex-direction: column; 
        gap: 15px;
    }
    
    .amenities-bar { 
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: -40px;
        border-radius: 0;
        padding: 40px 20px;
    }
    
    .amenities-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px; 
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 { font-size: 1.8rem; }
    
    .rooms-grid { 
        grid-template-columns: 1fr; 
    }
    
    .why-grid { 
        grid-template-columns: repeat(2, 1fr); 
        padding: 20px;
    }
    
    .why-item:not(:last-child)::after {
        display: none;
    }
    
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 150px;
    }
    
    .faq-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px;
    }
    
    .footer-grid h3::after { 
        left: 50%; 
        transform: translateX(-50%); 
    }
    
    .social-links { 
        justify-content: center; 
        margin-bottom: 20px;
    }
    
    .footer-facilities ul li, .footer-contact .contact-info p {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-main-title { font-size: 2.2rem; }
    
    .hero-upper-title {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .amenities-grid { 
        grid-template-columns: 1fr; 
    }
    
    .why-grid { 
        grid-template-columns: 1fr; 
    }
    
    .gallery-grid { 
        grid-template-columns: 1fr; 
    }
    
    .contact-info-side, .contact-form-side { 
        padding: 40px 20px; 
    }
    
    .contact-info-side h3 {
        font-size: 1.8rem;
    }
    
    .contact-form-side h3 {
        font-size: 1.6rem;
    }
}


