/* === 1. ENHANCED CORE VARIABLES (कलर और सेटिंग्स) === */
:root {
    --primary: #FF4500;
    --primary-gradient: linear-gradient(135deg, #FF4500 0%, #FF6B35 50%, #FF8C42 100%);
    --primary-light: #FFF7ED;
    --secondary: #0F172A;
    --accent: #00e5ff;
    --success: #25D366;
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-body: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 25px 70px rgba(0,0,0,0.08);
    --shadow-hover: 0 35px 100px rgba(255,69,0,0.3);
    --radius: 28px;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === 2. GLOBAL RESET & ANIMATIONS (बेसिक सेटअप) === */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    scroll-padding-top: 100px; 
    width: 100%;
}

body { 
    background: linear-gradient(135deg, var(--bg-body) 0%, #E2E8F0 100%); 
    color: var(--text-main); 
    line-height: 1.7; 
    overflow-x: hidden;
    width: 100%;
}

/* === 3. PARALLAX ANIMATED BACKGROUND === */
.parallax-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary), #FF6B35);
    background-size: 600% 600%; opacity: 0.08;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* === 4. FLOATING PARTICLES (हवा में तैरते दाने) === */
.particles { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 1; }
.particle {
    position: absolute; background: rgba(255,255,255,0.9); border-radius: 50%;
    animation: floatUp 8s infinite linear;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(0) rotate(720deg); opacity: 0; }
}

/* === 5. HEADER & NAVBAR (ऊपर की पट्टी) === */
header {
    position: fixed; width: 100%; top: 0; z-index: 9999; backdrop-filter: blur(30px);
    background: rgba(255,255,255,0.95); padding: 1rem 6%; display: flex; justify-content: space-between; align-items: center;
    box-shadow: var(--shadow); border-bottom: 1px solid rgba(255,255,255,0.2); transition: var(--transition);
}

header.scrolled { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

.logo { 
    font-size: 1.9rem; font-weight: 800; background: var(--primary-gradient); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: flex; align-items: center; gap: 12px;
}
.logo:hover { transform: scale(1.08) rotate(2deg); filter: drop-shadow(0 0 25px rgba(255,69,0,0.5)); }
.logo i { font-size: 2.2rem; animation: logoFloat 3s ease-in-out infinite; }

@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.nav-right { display: flex; align-items: center; gap: 25px; }
.phone-link { 
    font-weight: 800; color: var(--primary); font-size: 1.1rem; text-decoration: none; 
    display: flex; align-items: center; gap: 8px; transition: var(--transition);
}
.phone-link:hover { color: var(--accent); transform: scale(1.05); }

.menu-toggle { 
    font-size: 1.8rem; cursor: pointer; color: var(--secondary); padding: 12px; border-radius: 50%; 
    background: rgba(255,255,255,0.5); transition: var(--transition); width: 55px; height: 55px; display: flex; align-items: center; justify-content: center;
}
.menu-toggle:hover { background: var(--primary-light); color: var(--primary); transform: rotate(180deg); }

/* === 6. FIXED SIDEBAR (साइड वाला मेनू) === */
#sideMenu {
    position: fixed; top: 0; right: -100%; width: 350px; max-width: 85%; height: 100vh; z-index: 10001;
    background: rgba(15,23,42,0.98); backdrop-filter: blur(25px); padding: 90px 25px 40px 25px;
    transition: all 0.6s cubic-bezier(0.77,0.2,0.05,1); box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    display: flex; flex-direction: column; overflow-y: auto; scrollbar-width: none;
}

#sideMenu::-webkit-scrollbar { display: none; }
#sideMenu.active { right: 0; }

.close-btn { 
    position: absolute; top: 20px; right: 20px; color: white; font-size: 2.2rem; cursor: pointer; 
    width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); background: rgba(255,255,255,0.05);
}
.close-btn:hover { background: rgba(255,69,0,0.3); transform: rotate(90deg); }

.side-links { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 10px; }
.side-links li { opacity: 0; transform: translateX(40px); transition: 0.4s; }
#sideMenu.active .side-links li { opacity: 1; transform: translateX(0); animation: slideInRight 0.5s forwards; }

/* Side Menu Animation Delays */
#sideMenu.active .side-links li:nth-child(1) { animation-delay: 0.1s; }
#sideMenu.active .side-links li:nth-child(2) { animation-delay: 0.15s; }
#sideMenu.active .side-links li:nth-child(3) { animation-delay: 0.2s; }
#sideMenu.active .side-links li:nth-child(4) { animation-delay: 0.25s; }
#sideMenu.active .side-links li:nth-child(5) { animation-delay: 0.3s; }
#sideMenu.active .side-links li:nth-child(6) { animation-delay: 0.35s; }
#sideMenu.active .side-links li:nth-child(7) { animation-delay: 0.4s; }

@keyframes slideInRight { to { opacity: 1; transform: translateX(0); } }

.side-links a {
    color: white; text-decoration: none; font-size: 1.15rem; font-weight: 600; display: flex; align-items: center; gap: 15px;
    padding: 16px 22px; border-radius: 18px; transition: var(--transition); position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02);
}
.side-links a i { color: var(--primary); font-size: 1.3rem; width: 25px; text-align: center; }
.side-links a:hover { background: rgba(255,69,0,0.2); transform: translateX(10px); border-color: rgba(255,69,0,0.4); }

/* === 7. HERO SECTION (यहाँ मैंने बैकग्राउंड फोटो वाला बदलाव किया है) === */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
    url('backgrond image.jpeg');
    
    background-size: cover;
    background-position: center 30%; /* Yaha change kiya */
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 110px 15px 40px;
}

.hero-box { position: relative; z-index: 2; width: 100%; max-width: 1000px; margin: 0 auto; }
.hero-box h1 { 
    font-size: clamp(2.5rem, 8vw, 5.5rem); font-weight: 800; margin-bottom: 30px; line-height: 1.2;
    background: linear-gradient(45deg, white, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-box p { font-size: clamp(1rem, 4vw, 1.6rem); margin-bottom: 50px; opacity: 0.95; padding: 0 10px; }

.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.gradient-btn {
    background: var(--primary-gradient); color: white; border: none; padding: 18px 40px; font-size: 1.1rem; font-weight: 800;
    border-radius: 60px; cursor: pointer; transition: var(--transition);
    box-shadow: 0 20px 50px rgba(255,69,0,0.4); display: flex; align-items: center; gap: 12px;
}
.gradient-btn:hover { transform: translateY(-10px) scale(1.05); box-shadow: 0 30px 70px rgba(255,69,0,0.6); }
.whatsapp-btn { background: var(--success) !important; box-shadow: 0 20px 50px rgba(37,211,102,0.4) !important; }

/* === 8. SECTIONS & CARDS GRID (कार्ड्स और ग्रिड) === */
section { padding: 100px 5%; position: relative; width: 100%; }
.sec-header { text-align: center; margin-bottom: 80px; }
.sec-header h2 { 
    font-size: clamp(2rem, 6vw, 4rem); font-weight: 800; background: var(--primary-gradient); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px;
}

.cards-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); 
    gap: 35px; max-width: 1400px; margin: 0 auto; padding: 20px 0;
}

.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(25px); border-radius: var(--radius); 
    overflow: hidden; position: relative; border: 1px solid var(--glass-border); 
    transition: var(--transition); cursor: pointer; 
    display: flex; flex-direction: column; width: 100%; min-height: 520px;
}

.glass-card:hover {
    transform: translateY(-20px) scale(1.02); box-shadow: var(--shadow-hover); border-color: var(--primary);
}

.card-badge {
    position: absolute; top: 20px; right: 20px; background: var(--primary-gradient); color: white;
    padding: 8px 18px; border-radius: 30px; font-size: 0.8rem; font-weight: 800; z-index: 3;
}

.card-image { height: 240px; overflow: hidden; position: relative; width: 100%; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
.glass-card:hover .card-image img { transform: scale(1.15); }

.card-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.card-title { font-size: 1.5rem; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.card-price { 
    font-size: 1.8rem; font-weight: 900; background: var(--primary-gradient); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 10px 0;
}

.card-features { list-style: none; margin: 15px 0; flex-grow: 1; }
.card-features li { padding: 6px 0; color: var(--text-muted); position: relative; padding-left: 30px; font-size: 0.9rem; }
.card-features li::before { content: '✨'; position: absolute; left: 0; color: var(--primary); }

.card-cta { 
    background: var(--primary-gradient); color: white; border: none; padding: 14px 25px; 
    border-radius: 20px; font-weight: 700; cursor: pointer; width: 100%; transition: 0.3s;
}

/* === 9. FLOATING BUTTONS (तैरते हुए बटन) === */
.floating-actions {
    position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 10002;
}
.fab {
    width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: 0.4s;
}
.fab-whatsapp { background: var(--success); color: white; }
.fab-call { background: var(--primary-gradient); color: white; }
.fab:hover { transform: scale(1.15) translateY(-10px); }

/* === 10. RESPONSIVE FULL FIX (मोबाइल के लिए) === */
@media (max-width: 1024px) {
    .hero-box h1 { font-size: 3rem; }
    .hero-box p { font-size: 1.2rem; }
    .cards-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    header { padding: 12px 5%; }
    .logo { font-size: 1.4rem; }
    .phone-link { display: none; }
    .hero { background-attachment: scroll; padding-top: 140px; }
    .hero-box h1 { font-size: 2.4rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .gradient-btn { width: 100%; justify-content: center; }
    section { padding: 70px 20px; }
    .sec-header h2 { font-size: 2rem; }
    .cards-grid { grid-template-columns: 1fr; }
    #sideMenu { width: 100%; }
}

/* === 11. NAVBAR & LOGO OVERLAP (लोगो सेटिंग) === */
#navbar {
    position: fixed; top: 0; width: 100%; height: 70px; display: flex;
    justify-content: space-between; align-items: center; padding: 0 40px;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px); z-index: 999;
}

.logo { position: relative; width: 100px; }
.logo img {
    position: absolute; height: 150px; top: -50px; left: -50px; z-index: 1000;
}

/* === 12. FOOTER (नीचे वाला हिस्सा) === */
.footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white; padding: 50px 20px 20px; margin-top: 80px;
}
.footer-container {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px;
}
.footer-box h3 { margin-bottom: 15px; color: #ffd700; }
.footer-box p { font-size: 14px; line-height: 1.6; }
.footer-box ul { list-style: none; padding: 0; }
.footer-box ul li { margin: 8px 0; }
.footer-box ul li a { color: white; text-decoration: none; }
.footer-box ul li a:hover { color: #ffd700; }

.trip-btn, .support-btn {
    margin-top: 10px; padding: 8px 14px; border: none; background: gold; color: black; cursor: pointer; border-radius: 5px;
}

.footer-bottom {
    margin-top: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px;
}
.footer-social { display: flex; gap: 15px; margin-top: 20px; }
.social-icon {
    width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; text-decoration: none; transition: 0.3s;
}
.social-icon:hover { background: #00c896; transform: translateY(-5px); }

.newsletter input { padding: 6px; margin-top: 5px; }
.newsletter button { padding: 6px 10px; background: gold; border: none; cursor: pointer; }
.copyright { text-align: center; margin-top: 20px; font-size: 14px; opacity: 0.8; }

/* ================= RESPONSIVE ================= */

/* ================= SAFE RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec-header h2 {
        font-size: 2rem;
    }

    .hero-box h1 {
        font-size: 2.5rem;
    }

    .hero-box p {
        font-size: 1rem;
    }
}


/* Mobile */
@media (max-width: 600px) {

    /* Hero Section Only */
    .hero-box h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-box p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .gradient-btn {
        width: 100%;
        justify-content: center;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter {
        flex-direction: column;
        width: 100%;
    }

    .newsletter input,
    .newsletter button {
        width: 100%;
    }

    /* Floating Buttons */
    .floating-actions {
        right: 15px;
        bottom: 15px;
    }

}

