/*
Theme Name: Dwarka Stays Direct
Theme URI: https://www.dwarkastaysdirect.com/
Author: Nova AI
Author URI: https://www.dwarkastaysdirect.com/
Description: A premium dark OTT style theme for Dwarka hotel bookings, 100% mobile responsive and PageSpeed optimized.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dwarka-stays
*/

:root {
    --bg-main: #171026; /* Deep purple-navy background */
    --bg-card: #1e1531; /* Slightly lighter purple for cards */
    --primary-color: #26c6da; /* Cyan blue for headings */
    --primary-gradient: linear-gradient(135deg, #26c6da 0%, #0284c7 100%);
    --accent-orange: #f59e0b; 
    --orange-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --accent-green: #10b981; 
    --green-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --text-dark: #f8fafc; /* Crisp white */
    --text-body: #a7a2bc; /* Muted lavender/gray body text */
    --border-color: rgba(255, 255, 255, 0.08);
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-3d: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-neon: 0 0 15px rgba(38, 198, 218, 0.4);
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ANIMATIONS */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.9) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* TOP STATUS BAR */
.status-bar {
    background: #000;
    color: #a3a3a3;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.status-content { display: flex; justify-content: space-between; align-items: center; }
.top-call-link { color: var(--primary-color); text-decoration: none; font-weight: bold; }

/* MAIN HEADER (GLASSMORPHISM) */
.main-header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 1000;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand-text h1 { font-family: var(--font-heading); font-size: 1.8rem; color: #fff; text-shadow: var(--shadow-neon); }
.brand-text .subtitle { font-size: 0.75rem; color: var(--primary-color); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-item { color: #fff; text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; }
.nav-item:hover { color: var(--primary-color); transform: translateY(-2px); text-shadow: var(--shadow-neon); }
.nav-item:active { transform: translateY(2px) scale(0.95); }

.header-actions { display: flex; align-items: center; gap: 15px; }
.lang-select {
    padding: 8px 12px; border: 1px solid var(--border-color); border-radius: 8px;
    font-weight: 600; color: #fff; background: rgba(255,255,255,0.05); outline: none;
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none; border: none; font-weight: 700; border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-transform: uppercase; cursor: pointer;
}
.btn-primary { background: var(--primary-gradient); color: #fff; padding: 10px 20px; box-shadow: var(--shadow-neon); }
.btn-orange { background: var(--orange-gradient); color: #fff; padding: 14px 28px; font-size: 1.05rem; }
.btn-whatsapp { background: var(--green-gradient); color: #fff; padding: 14px 28px; font-size: 1.05rem; }
.btn:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0,0,0,0.6); filter: brightness(1.1); }
.btn:active { transform: translateY(3px) scale(0.97); box-shadow: inset 0 4px 10px rgba(0,0,0,0.5); }

/* PRICE BADGE (EXTREME HIGHLIGHT) */
.price-badge {
    display: inline-block !important;
    background: linear-gradient(90deg, #ff0044, #ff7b00, #ff0044) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-size: 1.4rem !important;
    font-weight: 900 !important;
    margin-bottom: 25px !important;
    box-shadow: 0 0 20px rgba(255,0,68,0.8), 0 0 40px rgba(255,123,0,0.6) !important;
    border: 3px solid #fff !important;
    animation: extremePulse 1.2s infinite alternate, shineBg 3s linear infinite !important;
    text-transform: uppercase !important;
    position: relative !important;
    z-index: 10 !important;
}

@keyframes extremePulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(255,0,68,0.8); }
    100% { transform: scale(1.08); box-shadow: 0 0 35px rgba(255,0,68,1), 0 0 50px rgba(255,123,0,0.9); }
}

@keyframes shineBg {
    to { background-position: 200% center; }
}

/* HERO SECTION (CINEMATIC) */
.hero-section {
    background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,1) 100%), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1000&q=60') center/cover;
    padding: 100px 0 80px; text-align: center;
}
.hero-content h2 { color: #fff; font-size: 3.2rem; font-family: var(--font-heading); margin-bottom: 15px; animation: slideUp 0.8s ease-out; }
.hero-content p { color: #d4d4d4; font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; animation: slideUp 1s ease-out; }

/* SEARCH WIDGET (NEON POP) */
.search-widget-container {
    background: var(--bg-card); border-radius: 16px; padding: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8); max-width: 800px; margin: 0 auto;
    border: 1px solid var(--border-color);
    animation: popIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.search-widget-title { font-size: 1.6rem; color: #fff; margin-bottom: 10px; font-family: var(--font-heading); }
.search-widget-container p { color: #a3a3a3; }
.search-actions { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }

/* SEO CONTENT */
.seo-content-section { padding: 80px 0; background: var(--bg-main); }
.seo-content-section.bg-gray { background: #0f0f0f; border-block: 1px solid var(--border-color); }
.seo-article {
    max-width: 900px; margin: 0 auto; background: var(--bg-card); padding: 40px;
    border-radius: 16px; box-shadow: var(--shadow-soft); border: 1px solid var(--border-color);
}
.bg-gray .seo-article { background: transparent; border: none; box-shadow: none; }
.seo-article h2 { font-size: 2rem; color: #fff; margin-bottom: 20px; font-family: var(--font-heading); }
.seo-article h3 { font-size: 1.4rem; color: var(--primary-color); margin: 30px 0 15px; }
.seo-article p { font-size: 1.05rem; margin-bottom: 20px; line-height: 1.8; }
/* Secret Keywords */
.seo-keywords-block { opacity: 0.7; font-size: 0.9rem; color: #666; margin-top: 20px; border-top: 1px solid var(--border-color); padding-top: 15px; }

/* GRID CARDS (OTT THUMBNAILS) */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.card {
    background: var(--bg-card); border-radius: 12px; overflow: hidden;
    border: 1px solid var(--border-color);
    transition: 0.4s; animation: popIn 1s ease-out forwards;
}
.card:hover { transform: translateY(-10px) scale(1.03); box-shadow: var(--shadow-neon); border-color: var(--primary-color); z-index: 2; }
.card:active { transform: translateY(0) scale(0.98); }
.card-img { width: 100%; height: 220px; object-fit: cover; border-bottom: 3px solid var(--primary-color); }
.card-body { padding: 25px; }
.card-body h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.card-body p { font-size: 0.95rem; margin-bottom: 20px; color: #a3a3a3; }

/* CTA & FOOTER */
.cta-section { background: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=800&q=60') center/cover; padding: 100px 0; text-align: center; position: relative; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: 2.2rem; margin-bottom: 15px; color: #fff; }
.main-footer { background: #000; color: #666; padding: 60px 0 20px; border-top: 1px solid #1a1a1a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-title { color: #fff; font-size: 1.3rem; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links a { color: #999; text-decoration: none; transition: 0.2s; display: inline-block; }
.footer-links a:hover { color: var(--primary-color); transform: translateX(5px); }
.footer-links a:active { transform: translateX(5px) scale(0.95); }

/* FLOATING DOCK */
.floating-contact-dock {
    position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 15px; z-index: 9999;
}
.float-btn {
    display: flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 50%; color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); text-decoration: none;
    transition: 0.3s;
}
.float-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-neon); }
.float-btn:active { transform: scale(0.95); box-shadow: inset 0 5px 15px rgba(0,0,0,0.5); }
.call-float { background: var(--orange-gradient); }
.whatsapp-float { background: var(--green-gradient); }
.float-icon { font-size: 1.6rem; }
.float-text { display: none; }

/* ========================================= */
/* 📱 MOBILE RESPONSIVENESS (SCALED DOWN) */
/* ========================================= */
@media (max-width: 768px) {
    /* 🔴 ULTRA-COMPACT HEADER (FORCED) 🔴 */
    .status-bar { padding: 3px 5px !important; }
    .status-text { font-size: 0.6rem !important; display: block; text-align: center; line-height: 1.1; margin-bottom: 2px; }
    .top-call-link { font-size: 0.7rem !important; display: block; text-align: center; }
    .status-content { flex-direction: column; gap: 0 !important; padding: 0 !important; }
    
    .main-header { padding: 5px 0 !important; }
    .nav-links { display: none !important; }
    .nav-container { 
        display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; 
        justify-content: space-between !important; align-items: center !important; padding: 0 10px !important; 
    }
    
    .brand { flex: 1; }
    .brand-text h1 { font-size: 1rem !important; margin: 0 !important; line-height: 1 !important; }
    .brand-text .subtitle { display: none !important; } /* Hide to save space */
    
    .header-actions { display: flex !important; flex-direction: row !important; gap: 5px !important; width: auto !important; align-items: center !important; }
    .lang-select { padding: 2px 4px !important; font-size: 0.7rem !important; height: 26px !important; margin: 0 !important; border-radius: 4px !important; }
    .header-actions .btn { padding: 2px 8px !important; font-size: 0.7rem !important; height: 26px !important; display: flex !important; align-items: center !important; border-radius: 4px !important; }

    /* 🟢 REST OF MOBILE CSS 🟢 */

    .price-badge { font-size: 1.1rem !important; padding: 10px 15px !important; margin-bottom: 15px !important; width: 90% !important; }
    .hero-section { padding: 20px 0 30px; }
    .hero-content h2 { font-size: 1.3rem; line-height: 1.3; margin-bottom: 8px; }
    .hero-content p { font-size: 0.85rem; margin-bottom: 15px; padding: 0 5px; }
    
    .search-widget-container { padding: 15px 10px; margin: 0 5px; }
    .search-widget-title { font-size: 1.1rem; margin-bottom: 10px; }
    .search-widget-container p { font-size: 0.85rem; margin-bottom: 15px; }
    .search-actions { flex-direction: column; gap: 8px; }
    .search-actions .btn { width: 100%; padding: 10px; font-size: 0.85rem; }

    .seo-content-section { padding: 20px 0; }
    .seo-article { padding: 15px 10px; margin: 0 5px; }
    .seo-article h2 { font-size: 1.3rem; margin-bottom: 10px; }
    .seo-article h3 { font-size: 1.1rem; margin: 15px 0 8px; }
    .seo-article p, .seo-article li { font-size: 0.85rem; }
    
    .grid-cards { gap: 10px; padding: 0 5px; margin-top: 15px; }
    .card-body { padding: 12px; }
    .card-body h3 { font-size: 1.1rem; margin-bottom: 5px; }
    .card-body p { font-size: 0.8rem; margin-bottom: 10px; }
    .card-action .btn { padding: 8px; font-size: 0.85rem; width: 100%; }
    
    .cta-section { padding: 40px 10px; }
    .cta-section h2 { font-size: 1.3rem; margin-bottom: 8px; }
    .cta-section p { font-size: 0.85rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .footer-title { font-size: 1.1rem; margin-bottom: 10px; }
    .main-footer { padding: 20px 0 70px; } 

    .floating-contact-dock {
        flex-direction: row; justify-content: space-evenly;
        bottom: 0; right: 0; left: 0; width: 100%;
        background: rgba(10, 10, 10, 0.95);
        padding: 6px; border-radius: 15px 15px 0 0;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.8);
        border-top: 1px solid var(--primary-color);
        backdrop-filter: blur(10px); gap: 6px;
    }
    .float-btn { width: 100%; height: 40px; border-radius: 6px; }
    .float-text { display: inline-block; font-size: 0.9rem; margin-left: 8px; font-weight: 700; }
    .float-icon { font-size: 1.3rem; }
}

/* ABOUT US BOX */
.about-box {
    background: rgba(38, 198, 218, 0.05); border-left: 4px solid var(--primary-color);
    padding: 20px 25px; margin: 40px 0 0; border-radius: 0 10px 10px 0;
}
.about-box h4 {
    color: var(--primary-color); font-size: 1.2rem; margin-bottom: 10px; font-weight: 700;
}
.about-box p {
    color: var(--text-body); font-size: 0.95rem; line-height: 1.6; margin: 0;
}

/* DISCLAIMER BOX */
.disclaimer-box {
    background: rgba(255, 68, 68, 0.05); border-left: 4px solid #ff4444;
    padding: 20px 25px; margin: 40px 0 20px; border-radius: 0 10px 10px 0;
}
.disclaimer-box h4 {
    color: #ff4444; font-size: 1.2rem; margin-bottom: 10px; font-weight: 700;
}
.disclaimer-box p {
    color: var(--text-body); font-size: 0.95rem; line-height: 1.6; margin: 0;
}

@media (max-width: 768px) {
    .about-box { padding: 15px; margin: 30px 10px 0; }
    .about-box h4 { font-size: 1.1rem; }
    .disclaimer-box { padding: 15px; margin: 20px 10px 10px; font-size: 0.9rem; }
    .disclaimer-box h4 { font-size: 1.1rem; }
}
