/* ============================================================
   TIRUMALA TIRUPATI DEVASTHANAMS - GLOBAL STYLESHEET
   Version: 2.0 | SEO-Optimised | Responsive
   ============================================================ */

/* --- GOOGLE FONTS & ICONS loaded via HTML --- */

/* --- CSS VARIABLES (Gold & Maroon Theme) --- */
:root {
    --primary: #800000;
    --primary-dark: #5a0000;
    --secondary: #FFD700;
    --accent: #FFA500;
    --success: #27ae60;
    --text-dark: #222;
    --text-medium: #444;
    --text-light: #666;
    --bg-cream: #FFF8E1;
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --border: #e8e0d0;
    --whatsapp: #25D366;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
    --transition: all 0.3s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* --- UTILITY CLASSES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-white); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--secondary); }
.font-heading { font-family: var(--font-heading); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- SECTION TITLE --- */
.section-title { text-align: center; margin-bottom: 55px; }
.section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.section-title.left-align { text-align: left; }
.section-title.left-align h2::after { left: 0; transform: none; }
.section-title p { color: var(--text-light); max-width: 640px; margin: 15px auto 0; font-size: 17px; }

/* --- BREADCRUMB --- */
.breadcrumb-bar {
    background: var(--primary);
    padding: 12px 0;
}
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,0.75);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: #fff; font-weight: 600; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
header {
    background: var(--bg-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 3px solid var(--primary);
}
.navbar {
    max-width: 1200px; margin: 0 auto;
    padding: 12px 20px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-heading);
    font-size: 18px; font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}
.logo-img { height: 52px; width: auto; object-fit: contain; }
.logo span { display: none; }

.nav-links {
    display: flex; gap: 22px; align-items: center;
}
.nav-links a {
    font-weight: 600; font-size: 14px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative; padding-bottom: 3px;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-btn {
    background: var(--primary) !important;
    color: var(--bg-white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    border: 2px solid var(--primary) !important;
    white-space: nowrap;
}
.nav-btn:hover {
    background: var(--bg-white) !important;
    color: var(--primary) !important;
}
.nav-btn::after { display: none !important; }

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    padding: 5px;
}

/* Mobile nav */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed; top: 0; right: 0;
        width: 280px; height: 100vh;
        background: var(--bg-white);
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        z-index: 999;
        gap: 20px;
        overflow-y: auto;
    }
    .nav-links.open a { font-size: 16px; padding: 8px 0; border-bottom: 1px solid var(--border); }
    .nav-links.open a::after { display: none; }
    .nav-overlay {
        display: none;
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
    .nav-overlay.show { display: block; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/t1.webp') center/cover no-repeat;
    color: var(--bg-white);
    padding: 110px 20px 90px;
    text-align: center;
    border-bottom: 5px solid var(--secondary);
    position: relative;
}
.hero-inner { max-width: 800px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,215,0,0.15);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px; font-weight: 600;
    margin-bottom: 20px; letter-spacing: 1px;
    text-transform: uppercase;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    color: var(--secondary);
    line-height: 1.2;
}
.hero p {
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 650px;
    margin: 0 auto 35px;
    opacity: 0.92;
    line-height: 1.6;
}
.hero-stats {
    display: flex; justify-content: center; gap: 30px;
    flex-wrap: wrap; margin-bottom: 35px;
}
.hero-stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 22px;
    border-radius: 10px;
}
.hero-stat strong {
    display: block; font-size: 26px;
    color: var(--secondary); font-weight: 700;
}
.hero-stat span { font-size: 13px; opacity: 0.85; }
.hero-btn-group {
    display: flex; gap: 15px;
    justify-content: center; flex-wrap: wrap;
}
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 35px; border-radius: 50px; font-weight: 700; font-size: 16px; transition: var(--transition); cursor: pointer; }
.btn-primary { background: var(--secondary); color: #000; }
.btn-primary:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--primary); transform: translateY(-3px); }
.btn-maroon { background: var(--primary); color: #fff; }
.btn-maroon:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline-maroon { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline-maroon:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 70px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('/t1.webp') center/cover;
    opacity: 0.12;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4.5vw, 46px);
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}
.page-hero p { font-size: clamp(15px, 2vw, 18px); opacity: 0.9; max-width: 620px; margin: 0 auto; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.feature-card {
    background: var(--bg-white);
    padding: 32px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 42px; color: var(--secondary); margin-bottom: 18px; }
.feature-card h3 { margin-bottom: 10px; font-size: 20px; color: var(--primary); font-family: var(--font-heading); }
.feature-card p { font-size: 15px; color: var(--text-light); }

/* ============================================================
   ROOM CARDS
   ============================================================ */
.pricing-alert {
    background: #E8F5E9; border: 1px solid #A5D6A7;
    color: #1B5E20; padding: 14px 20px;
    text-align: center; border-radius: var(--radius);
    margin-bottom: 40px; font-weight: 600;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 15px;
}
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.room-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.room-img { height: 220px; overflow: hidden; position: relative; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.room-card:hover .room-img img { transform: scale(1.08); }
.room-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--secondary); color: #000;
    padding: 5px 14px; border-radius: 4px;
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.room-badge.badge-popular { background: var(--primary); color: #fff; }
.room-details { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.room-title {
    font-family: var(--font-heading);
    font-size: 20px; color: var(--primary);
    margin-bottom: 6px; font-weight: 700;
}
.room-desc { font-size: 14px; color: var(--text-light); margin-bottom: 14px; }
.room-perks { margin-bottom: 18px; }
.room-perks li {
    font-size: 13px; color: #555;
    margin-bottom: 5px;
    display: flex; align-items: center; gap: 8px;
}
.room-perks li i { color: var(--success); font-size: 12px; }
.room-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; margin-top: auto; }
.room-price { font-size: 26px; color: var(--primary); font-weight: 700; }
.room-price small { font-size: 13px; color: var(--text-light); font-weight: 400; }
.room-btn {
    display: block; width: 100%; padding: 13px;
    text-align: center; background: var(--primary);
    color: white; border-radius: var(--radius);
    font-weight: 700; font-size: 15px; transition: var(--transition);
}
.room-btn:hover { background: var(--secondary); color: #000; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-wrap { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.about-img { flex: 1; min-width: 280px; position: relative; }
.about-img img {
    border-radius: var(--radius-lg);
    box-shadow: -18px 18px 0 var(--secondary);
    border: 5px solid var(--bg-white);
    position: relative; z-index: 1;
}
.about-text { flex: 1; min-width: 280px; }
.about-text p { margin-bottom: 15px; font-size: 16px; color: var(--text-medium); }
.about-badges { display: flex; gap: 15px; flex-wrap: wrap; margin: 25px 0; }
.about-badge {
    display: flex; align-items: center; gap: 8px;
    background: var(--bg-cream);
    border: 1px solid var(--secondary);
    padding: 10px 16px; border-radius: 8px;
    font-size: 13px; font-weight: 600; color: var(--primary);
}
.about-badge i { color: var(--secondary); }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; }
.amenity-item {
    background: var(--bg-white); padding: 28px 15px;
    text-align: center; border-radius: var(--radius);
    border: 1px solid var(--border); transition: var(--transition);
}
.amenity-item:hover { border-color: var(--secondary); transform: scale(1.05); box-shadow: var(--shadow); }
.amenity-item i { font-size: 34px; color: var(--primary); margin-bottom: 12px; display: block; }
.amenity-item p { font-size: 13px; color: var(--text-medium); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.review-card {
    background: var(--bg-white); padding: 28px;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--secondary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--accent); margin-bottom: 12px; font-size: 16px; }
.review-quote { font-size: 40px; color: var(--secondary); line-height: 1; margin-bottom: -5px; font-family: Georgia, serif; }
.review-text { font-style: italic; font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 15px; }
.reviewer { font-weight: 700; color: var(--primary); font-size: 15px; }
.reviewer span { display: block; font-size: 12px; color: var(--text-light); font-weight: 400; font-style: normal; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white); margin-bottom: 12px;
    border-radius: var(--radius); box-shadow: var(--shadow-sm);
    overflow: hidden; border-left: 5px solid var(--primary);
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
    padding: 20px 22px; cursor: pointer; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; color: var(--text-dark); gap: 15px;
    user-select: none;
}
.faq-question i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-answer {
    padding: 0 22px; color: var(--text-light);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 15px; line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 22px 20px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active { border-left-color: var(--secondary); }

/* ============================================================
   CONTENT ARTICLE (Long-form pages)
   ============================================================ */
.content-article { max-width: 900px; margin: 0 auto; }
.content-article h2 {
    font-family: var(--font-heading); font-size: 28px;
    color: var(--primary); margin: 40px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-cream);
}
.content-article h3 { font-size: 20px; color: var(--primary-dark); margin: 28px 0 12px; }
.content-article h4 { font-size: 17px; color: var(--text-dark); margin: 22px 0 10px; font-weight: 700; }
.content-article p { margin-bottom: 16px; font-size: 16px; color: var(--text-medium); }
.content-article ul, .content-article ol { margin: 15px 0 20px 25px; }
.content-article li { margin-bottom: 8px; font-size: 16px; color: var(--text-medium); line-height: 1.7; }
.content-article strong { color: var(--text-dark); }
.content-article a { color: var(--primary); text-decoration: underline; }
.content-article a:hover { color: var(--secondary); }

.info-box {
    background: var(--bg-cream);
    border-left: 4px solid var(--secondary);
    padding: 18px 22px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 25px 0;
}
.info-box.info-green { background: #E8F5E9; border-color: var(--success); }
.info-box.info-red { background: #FFEBEE; border-color: #c0392b; }
.info-box strong { color: var(--primary); display: block; margin-bottom: 6px; }

.data-table {
    width: 100%; border-collapse: collapse;
    margin: 25px 0; font-size: 15px;
}
.data-table th {
    background: var(--primary); color: #fff;
    padding: 12px 16px; text-align: left; font-weight: 600;
}
.data-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) td { background: var(--bg-cream); }
.data-table tr:hover td { background: #FFF8E1; }

/* TOC */
.toc-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius); padding: 22px 25px;
    margin: 30px 0;
}
.toc-box h3 { color: var(--primary); margin-bottom: 14px; font-size: 17px; }
.toc-box ol { margin-left: 20px; }
.toc-box li { margin-bottom: 7px; }
.toc-box a { color: var(--primary); font-size: 15px; }
.toc-box a:hover { color: var(--secondary); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--primary); padding: 50px 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; text-align: center; }
.stat-item strong { display: block; font-size: 42px; font-weight: 700; color: var(--secondary); font-family: var(--font-heading); }
.stat-item span { color: rgba(255,255,255,0.8); font-size: 15px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; padding: 70px 20px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '🕉';
    position: absolute; font-size: 300px;
    opacity: 0.04; top: -80px; right: -40px;
    line-height: 1;
}
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(24px, 4vw, 38px); color: var(--secondary); margin-bottom: 15px; }
.cta-banner p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto 30px; }
.cta-btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-strip { background: var(--bg-white); padding: 30px 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text-medium); }
.trust-item i { font-size: 22px; color: var(--primary); }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.contact-info-card {
    background: var(--bg-white); padding: 30px;
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary);
}
.contact-info-card h3 { font-family: var(--font-heading); color: var(--primary); margin-bottom: 20px; font-size: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.contact-detail i { font-size: 18px; color: var(--secondary); margin-top: 2px; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 13px; color: var(--text-light); margin-bottom: 2px; }
.contact-detail a, .contact-detail p { font-size: 16px; color: var(--text-dark); }
.contact-detail a:hover { color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #141414; color: #ccc;
    padding: 65px 20px 25px;
    border-top: 5px solid var(--secondary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 45px; max-width: 1200px; margin: 0 auto;
}
.footer-col h3 {
    color: var(--secondary); font-family: var(--font-heading);
    margin-bottom: 20px; font-size: 18px;
}
.footer-col p { font-size: 14px; line-height: 1.8; color: #999; margin-bottom: 10px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.footer-logo img { height: 45px; width: auto; }
.footer-links a {
    display: block; color: #999;
    margin-bottom: 9px; font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: #2a2a2a;
    display: flex; align-items: center; justify-content: center;
    color: #999; font-size: 16px; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: #000; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--secondary); font-size: 15px; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 14px; color: #999; }
.footer-contact-item a:hover { color: var(--secondary); }
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 50px; padding-top: 22px;
    max-width: 1200px; margin: 50px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 15px;
}
.copyright { font-size: 13px; color: #666; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: #666; }
.footer-legal a:hover { color: var(--secondary); }
.disclaimer { font-size: 12px; color: #555; text-align: center; max-width: 1000px; margin: 20px auto 0; padding-top: 15px; border-top: 1px solid #222; line-height: 1.7; }

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-mobile {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--bg-white); box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    display: none; padding: 10px 15px; z-index: 2000; gap: 10px;
}
.stick-btn {
    flex: 1; text-align: center; padding: 12px;
    border-radius: 8px; color: white; font-weight: 700;
    font-size: 14px; display: flex;
    align-items: center; justify-content: center; gap: 8px; cursor: pointer;
}
.btn-call { background: var(--primary); }
.btn-wa { background: var(--whatsapp); }

/* ============================================================
   RELATED PAGES / INTERNAL LINKS
   ============================================================ */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.related-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.related-card img { height: 170px; width: 100%; object-fit: cover; }
.related-card-body { padding: 18px; flex-grow: 1; }
.related-card-body h3 { font-size: 17px; color: var(--primary); margin-bottom: 7px; font-weight: 700; }
.related-card-body p { font-size: 14px; color: var(--text-light); }
.related-card-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px; background: var(--bg-cream);
    color: var(--primary); font-weight: 700; font-size: 14px;
    border-top: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 55px 0; }
    .hero { padding: 80px 20px 70px; }
    .hero-stats { gap: 15px; }
    .about-wrap { flex-direction: column-reverse; }
    .about-img img { box-shadow: -10px 10px 0 var(--secondary); }
    .sticky-mobile { display: flex; }
    footer { padding-bottom: 80px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-btn-group { flex-direction: column; width: 100%; }
    .hero-btn-group .btn { width: 100%; justify-content: center; }
    .cta-btn-group { flex-direction: column; align-items: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }
