/* 
   Sankatha Guest House - Premium Luxury Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Premium Luxury Color Palette */
    --bg-primary: #FFFFFF;
    --bg-gradient: radial-gradient(circle at 100% 0%, #FAFAFA 0%, #FFFFFF 50%, #FFFFFF 100%);
    --accent-saffron: #C0392B; /* Deep, elegant terracotta/saffron */
    --accent-saffron-hover: #A93226;
    --accent-gold: #B38E5D; /* Champagne Gold */
    --text-main: #1C1C1C;
    --text-light: #5A5A5A;
    --white: #ffffff;
    --green-whatsapp: #25D366;
    
    /* Typography */
    --font-heading: 'Marcellus', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Variables */
    --spacing-section: 5rem;
    --border-radius: 20px;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: 1px solid rgba(179, 142, 93, 0.2);
    --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 32px 64px rgba(192, 57, 43, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    background: linear-gradient(-45deg, #FFFFFF, #FCFCFC, #F7F7F7, #FFFFFF);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

a, button {
    cursor: none;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px; height: 8px;
    background-color: var(--accent-saffron);
}

.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid rgba(209, 102, 15, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-main);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.accent-text {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-saffron);
    font-size: 2rem;
    margin-top: 2rem;
    line-height: 1.4;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

section {
    padding: var(--spacing-section) 0;
    position: relative;
}

/* Premium Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-saffron);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(209, 102, 15, 0.2);
    border: 1px solid transparent;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--accent-saffron);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(209, 102, 15, 0.3);
    border: 1px solid var(--accent-saffron);
}

.cta-btn.small {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    border-radius: 30px;
}

.cta-btn.green-btn {
    background: var(--green-whatsapp);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.cta-btn.green-btn:hover {
    background: var(--white);
    color: var(--green-whatsapp);
    border-color: var(--green-whatsapp);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.cta-link {
    color: var(--accent-saffron);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    font-size: 1.05rem;
}

.cta-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Glassmorphism Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.nav-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-main);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mandir-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent-saffron);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-saffron);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Cinematic Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 12, 10, 0.4) 0%, rgba(31, 26, 23, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 1000px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    font-weight: 300;
    max-width: 650px;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 2rem 0;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-content span {
    margin: 0 2.5rem;
    font-weight: 400;
}

.marquee-content span.mq-star {
    font-size: 0.9rem;
    color: var(--accent-saffron);
    margin: 0 3rem;
    vertical-align: middle;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* About Section */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow-soft);
    animation: float 6s ease-in-out infinite;
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--border-radius);
    pointer-events: none;
}

.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.about-img.active {
    opacity: 1;
}

.about-text p {
    margin-bottom: 1.8rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Rooms Section - Perfect Design */
.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* OTA Style Room Cards */
.ota-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ota-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    transition: transform 0.3s ease;
}

.ota-card:hover {
    transform: translateY(-4px);
}

.ota-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.ota-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ota-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.ota-score {
    background: #0056D2;
    color: white;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.ota-rating-word {
    color: #0056D2;
    font-weight: 700;
}

.ota-reviews {
    color: #4a4a4a;
}

.ota-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ota-stars {
    color: #ffb700;
    font-size: 0.9rem;
}
.star-gray {
    color: #e0e0e0;
}

.ota-location-row {
    font-size: 0.85rem;
    color: #4a4a4a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ota-loc-tag {
    color: #008cff;
    border: 1px solid #008cff;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.75rem;
}

.ota-split {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 16px;
    gap: 1rem;
}

.ota-features {
    flex: 1;
}

.ota-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.ota-features li {
    font-size: 0.85rem;
    color: #008cff;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.ota-features svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ota-pill {
    display: inline-block;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.75rem;
    color: #333;
}

.ota-price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ota-old-price {
    text-decoration: line-through;
    color: #d9534f;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.ota-new-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 4px;
}

.ota-taxes {
    font-size: 0.7rem;
    color: #777;
    line-height: 1.2;
}

.ota-summary {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #000;
    padding-top: 12px;
    border-top: 1px solid #eee;
    margin-top: auto;
    line-height: 1.4;
}

.ota-summary svg {
    width: 16px;
    height: 16px;
    color: #008cff;
    flex-shrink: 0;
    margin-top: 2px;
}

.ota-actions {
    margin-top: 0.8rem;
}

.ota-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--text-main);
    color: var(--white);
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ota-btn svg {
    margin-bottom: 1px;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-brand-btn {
    background: #25D366;
    color: #ffffff;
    animation: pulse-green 2s infinite;
}

.whatsapp-brand-btn:hover {
    background: #1ea952;
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-container {
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: var(--glass-border);
}

.distances h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.distance-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
}

.dist-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.dist-item:last-child {
    border-bottom: none;
}

.dist-item:hover {
    transform: translateX(4px);
}

.dist-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 183, 0, 0.08);
    color: var(--accent-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dist-icon svg {
    width: 22px;
    height: 22px;
}

.dist-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dist-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    margin: 0;
}

.dist-info span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(0,0,0,0.03);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-body);
}

/* Experiences */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.exp-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: var(--glass-border);
    position: relative;
    group: hover;
}

.exp-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.exp-card:hover img {
    transform: scale(1.08);
}

.exp-content {
    padding: 2rem;
}

.exp-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.exp-content p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Gallery (Masonry) */
.masonry-grid {
    column-count: 3;
    column-gap: 2rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.masonry-item img {
    width: 100%;
    display: block;
    animation: kenburns 15s infinite alternate ease-in-out;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    animation-play-state: paused;
    transform: scale(1.15);
}

/* Testimonials */
.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0 3rem 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.hidden-review {
    display: none;
}

.testimonial-carousel.show-all .hidden-review {
    display: flex;
}

.luxury-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 42px;
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.luxury-btn:hover {
    background: var(--text-main);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    width: 40px;
    height: 40px;
    color: rgba(255, 183, 0, 0.15);
}

.stars {
    color: #ffb700;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-saffron);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.author-info h4 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
    color: var(--text-main);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: #1f1a17;
    color: var(--white);
    padding-top: 6rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-brand .address {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-contact h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.footer-bottom {
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: var(--green-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-whatsapp:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Hamburger & Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 75%; align-self: flex-end; }
.hamburger span:nth-child(3) { width: 100%; }

.hamburger:hover span:nth-child(2) { width: 100%; }

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(-2%);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.mobile-link {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.mobile-link:hover {
    color: var(--accent-saffron);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
    .room-grid, .ota-grid, .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { column-count: 2; }
    .about-grid, .location-grid, .footer-grid { gap: 3rem; }
}

@media (max-width: 768px) {
    body, a, button { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none !important; }
    
    section { padding: 4rem 0; }
    .container { padding: 0 1.5rem; }
    
    .nav-content { padding: 1rem 1.5rem; }
    .logo { font-size: 1.35rem; gap: 6px; }
    .mandir-icon { width: 22px; height: 22px; }
    
    .nav-links, .nav-contact { display: none; }
    .hamburger { display: flex; }
    
    .hero-content { margin-top: 5rem; }
    .hero-title { font-size: 2.8rem; min-height: 150px; }
    .hero-subtitle { font-size: 1.1rem; padding: 0 1rem; }
    
    .about-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-wrapper { height: 400px; }
    
    .ota-grid, .exp-grid { grid-template-columns: 1fr; }
    
    .masonry-grid { column-count: 1; }
    
    .section-title { font-size: 2.5rem; }
    
    .map-container { height: 350px; }
    
    /* Location Mobile Fixes */
    .distances h3 {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .distances p { font-size: 0.95rem; }
    .dist-icon { width: 36px; height: 36px; }
    .dist-icon svg { width: 18px; height: 18px; }
    .dist-info h4 { font-size: 1rem; line-height: 1.3; margin-right: 10px; }
    .dist-info span { font-size: 0.8rem; padding: 4px 10px; flex-shrink: 0; }
    
    .testimonial-carousel { grid-template-columns: 1fr; gap: 1.5rem; }
    .testimonial-card { min-width: auto; padding: 2rem; }
    .sticky-whatsapp { bottom: 20px; right: 20px; width: 55px; height: 55px; }
    
    .marquee-container { font-size: 1.1rem; padding: 1rem 0; }
}

@media (max-width: 480px) {
    html, body { overflow-x: hidden; width: 100%; }
    .hero-title { font-size: 2.3rem; min-height: auto; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .about-img-wrapper { height: 300px; }
    .marquee-container { font-size: 0.9rem; letter-spacing: 3px; }
    .marquee-content span { margin: 0 1rem; }
    .luxury-btn, .cta-btn, .ota-btn { padding: 12px 24px; width: 100%; display: block; text-align: center; }
    .testimonial-card { padding: 1.5rem; }
    .quote { font-size: 1rem; }
    .footer-grid { gap: 2rem; }
    .footer-brand h2 { font-size: 2rem; }
    .ota-price { font-size: 1.6rem; }
    .room-img { height: 200px; }
    .exp-card img { height: 200px; }
    .preloader-logo { font-size: 1.5rem; letter-spacing: 8px; }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center; justify-content: center;
    color: var(--text-main);
}

.preloader-content { text-align: center; }

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem; 
    letter-spacing: 12px;
    margin-bottom: 30px;
    opacity: 0;
    text-transform: uppercase;
    font-weight: 400;
}

.preloader-line {
    width: 250px; height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.preloader-line-inner {
    width: 0%; height: 100%;
    background: var(--text-main);
}

/* Enhanced Hover States */
.room-card { position: relative; }
.room-img { position: relative; overflow: hidden; }
.room-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.room-card:hover .room-img::after { opacity: 1; }

.exp-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}
.exp-card:hover::after { opacity: 1; }

.exp-content {
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}
.exp-card:hover .exp-content {
    transform: translateY(-10px);
}
.exp-card h3, .exp-card p {
    transition: color 0.4s ease;
}
.exp-card:hover h3, .exp-card:hover p {
    color: var(--white);
}

/* Text Reveal Animation Classes */
.text-reveal-wrapper {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}
.text-reveal {
    display: inline-block;
    transform: translateY(110%);
}

/* Draggable Cursor */
.testimonial-carousel.dragging { cursor: grabbing; }
.testimonial-carousel.dragging .testimonial-card { cursor: grabbing; pointer-events: none; }
