/* === VARIABLES === */
:root {
    --saffron: #E8621A;
    --saffron-dark: #cc5415;
    --maroon: #7B1B2A;
    --maroon-dark: #5c141f;
    --gold: #C8922A;
    --cream: #FDF8F0;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: all 0.3s ease-in-out;
}

/* === RESET & GLOBAL === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--maroon);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* === TYPOGRAPHY === */
.highlight-gold {
    color: var(--gold);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-saffron {
    background-color: var(--saffron);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-saffron:hover {
    background-color: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline.whatsapp-btn {
    border-color: var(--saffron);
    color: var(--saffron);
}

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

/* === FLOATING ELEMENTS === */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--maroon);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--gold);
    color: var(--maroon);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: transparent;
    transition: var(--transition);
    z-index: 100;
}

.navbar.scrolled {
    background-color: var(--maroon);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.om-icon {
    font-size: 2rem;
    color: var(--gold);
    font-family: var(--font-heading);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.navbar:not(.scrolled) .logo-text {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.navbar:not(.scrolled) .nav-links a {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(123, 27, 42, 0.9) 0%, rgba(123, 27, 42, 0.4) 100%);
}

.hero-content {
    color: var(--white);
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: rgba(200, 146, 42, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--white);
}

.hero .subheading {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 20px;
}

.hero .description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-badges i {
    color: var(--gold);
}

/* === QUICK BOOKING FORM === */
.booking-bar {
    background-color: var(--maroon);
    border-bottom: 4px solid var(--gold);
    padding: 30px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-sm);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.form-btn {
    height: 48px;
    min-width: 150px;
}

/* === DECORATIVE DIVIDER === */
.divider {
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: rgba(200, 146, 42, 0.3);
}

.divider::before { right: 55%; }
.divider::after { left: 55%; }

.om-divider {
    font-size: 2rem;
    color: var(--gold);
    font-family: var(--font-heading);
    background-color: var(--cream);
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* === ABOUT US === */
.about {
    padding: 60px 0;
}

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

.gold-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--saffron);
    font-size: 1.2rem;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    transform: translate(15px, 15px);
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* === INFO BAR === */
.info-bar {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon) 100%);
    padding: 50px 0;
    color: var(--white);
}

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

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-box i {
    font-size: 2.5rem;
    color: var(--gold);
}

.info-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text span {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* === ROOM RATES === */
.rooms {
    padding: 80px 0;
}

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

.room-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

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

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--saffron);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.card-badge.premium {
    background-color: var(--gold);
    color: var(--maroon);
}

.room-content {
    padding: 25px;
}

.room-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

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

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.capacity {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.capacity i {
    color: var(--saffron);
    width: 20px;
}

.rating {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

.features li {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-btns {
    display: flex;
    gap: 10px;
}

.card-btns .btn {
    flex: 1;
}

.card-btns .btn-outline {
    flex: 0 0 auto;
    border-color: #25D366;
    color: #25D366;
}

.card-btns .btn-outline:hover {
    background-color: #25D366;
    color: var(--white);
}

/* === FACILITIES === */
.facilities {
    padding: 80px 0;
    background-color: #fff;
}

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

.facility-card {
    background-color: var(--cream);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(200, 146, 42, 0.2);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(232, 98, 26, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--saffron);
    transition: var(--transition);
}

.facility-card:hover .icon-circle {
    background-color: var(--saffron);
    color: var(--white);
}

.facility-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.facility-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.facility-image {
    padding: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.facility-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.facility-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(123, 27, 42, 0.9) 0%, transparent 100%);
    z-index: 2;
}

.facility-image h3, 
.facility-image p {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding: 0 20px;
}

.facility-image h3 {
    margin-bottom: 5px;
}

.facility-image p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* === SPIRITUAL SECTION === */
.spiritual {
    position: relative;
    padding: 120px 0;
    text-align: center;
}

.spiritual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.spiritual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.spiritual-content {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.spiritual h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 25px;
}

.spiritual p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* === SEO CONTENT === */
.seo-content {
    padding: 80px 0;
    background-color: var(--white);
}

.seo-content h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.seo-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--saffron);
}

.seo-block p {
    color: var(--text-light);
}

.seo-checklist {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background-color: var(--cream);
    padding: 25px;
    border-radius: var(--radius-md);
}

.seo-checklist li {
    font-weight: 600;
    color: var(--maroon);
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-checklist i {
    color: var(--gold);
}

/* === TRENDING SEARCHES === */
.trending {
    padding: 60px 0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tag {
    background-color: var(--white);
    border: 1px solid rgba(123, 27, 42, 0.2);
    color: var(--maroon);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: default;
}

.tag:hover {
    background-color: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
}

/* === CONTACT & MAP === */
.contact-map {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-panel {
    background-color: var(--maroon);
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.contact-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.contact-details {
    padding: 40px;
}

.contact-details h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-details > p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    opacity: 0.9;
}

.whatsapp-btn {
    margin-top: 10px;
    display: inline-flex;
}

.map-container {
    min-height: 400px;
}

/* === FAQ ACCORDION === */
.faq {
    padding: 80px 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--white);
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
}

.accordion-header i {
    color: var(--saffron);
    transition: var(--transition);
}

.accordion-item.active .accordion-header {
    background-color: rgba(232, 98, 26, 0.05);
}

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

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 20px;
}

.accordion-content p {
    color: var(--text-light);
}

/* === FOOTER === */
.footer {
    background-color: var(--maroon-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-seal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 25px;
    max-width: 400px;
}

.footer-col h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

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

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

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

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

.footer-contact-info i {
    color: var(--gold);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* === ANIMATIONS === */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrapper { margin-top: 40px; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--maroon);
        flex-direction: column;
        padding: 80px 30px;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { right: 0; }
    .nav-cta { display: none; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero .subheading { font-size: 1.4rem; }
    .hero-btns { flex-direction: column; }
    
    .booking-bar { margin-top: 0; border-radius: 0; }
    .info-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
    .seo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
