/*==================================================
            REAL HIMALAYA WEBSITE
            STYLE.CSS (PART - 1)
==================================================*/

/* ===========================
        GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===========================
        ROOT VARIABLES
=========================== */

:root{

    --primary:#0A4D68;
    --secondary:#088395;
    --accent:#FFD166;
    --white:#ffffff;
    --black:#222222;
    --gray:#777777;
    --light:#f5f8fb;

    --radius:12px;

    --transition:.4s ease;

}

/* ===========================
        RESET CSS
=========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--black);

    line-height:1.7;

}

/* ===========================
        CONTAINER
=========================== */

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

}

/* ===========================
        LINKS
=========================== */

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

img{

    width:100%;

    display:block;

}

/* ===========================
        HEADER
=========================== */

header{
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(226, 235, 245, 0.95);
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

}

header.sticky{

    background:#0a2342;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    padding:12px 8%;

}

.logo img{

    width:180px;

}

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    color:var(--white);

    font-size:16px;

    font-weight:500;

}

.navbar a:hover{

    color:var(--accent);

}

.header-btn a{

    background:var(--accent);

    color:var(--black);

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

}

.header-btn a:hover{

    background:var(--white);

}

/* ===========================
        HERO
=========================== */

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero video{

    width:100vw !important;

    height:100vh !important;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    color:white;

    width:90%;

}

.hero-content span{

    color:var(--accent);

    letter-spacing:3px;

    font-size:15px;

}

.hero-content h1{

    font-size:65px;

    margin:25px 0;

    font-weight:700;

}

.hero-content p{

    max-width:750px;

    margin:auto;

    font-size:18px;

}

.hero-buttons{

    margin-top:40px;

}

.hero-buttons a{

    display:inline-block;

    margin:10px;

    padding:16px 35px;

    border-radius:40px;

    font-weight:600;

}

.hero-buttons a:first-child{

    background:var(--accent);

    color:black;

}

.hero-buttons a:last-child{

    border:2px solid white;

    color:white;

}

.hero-buttons a:hover{

    transform:translateY(-5px);

}

/* ===========================
      SECTION TITLE
=========================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--secondary);

    font-weight:600;

    letter-spacing:2px;

}

.section-title h2{

    font-size:42px;

    margin:15px 0;

}

.section-title p{

    color:var(--gray);

    max-width:700px;

    margin:auto;

}
/*==================================================
        BOOKING SECTION
==================================================*/

.booking{

    padding:30px 0;

    background:#f8fbff;

}

.booking-form{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:40px;

}

.input-box{

    display:flex;

    flex-direction:column;

}

.input-box label{

    margin-bottom:10px;

    font-weight:600;

    color:var(--black);

}

.input-box input,
.input-box select,
.input-box textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #d9e3ec;

    border-radius:var(--radius);

    font-size:16px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:var(--transition);

    background:#fff;

}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{

    border-color:var(--secondary);

    box-shadow:0 0 12px rgba(8,131,149,.15);

}

.full-width{

    grid-column:1/3;

}

.booking-form button{

    grid-column:1/3;

    padding:18px;

    background:var(--primary);

    color:#fff;

    border:none;

    border-radius:40px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:var(--transition);

}

.booking-form button:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

/*==================================================
        DESTINATIONS
==================================================*/

.destinations{

    padding:30px;

}

.destination-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.destination-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:var(--transition);

}

.destination-card:hover{

    transform:translateY(-10px);

}

.destination-card img{

    height:260px;

    object-fit:cover;

}

.destination-content{

    padding:25px;

}

.destination-content h3{

    margin-bottom:12px;

    font-size:24px;

}

.destination-content p{

    color:var(--gray);

    margin-bottom:18px;

}

.destination-content a{

    color:var(--secondary);

    font-weight:600;

}

/*==================================================
        WHY CHOOSE US
==================================================*/

.why-us{

    padding:100px 0;

    background:var(--light);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-card img{

    width:70px;

    margin:0 auto 20px;

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    color:var(--gray);

}

/*==================================================
        FEATURED PACKAGES
==================================================*/

.featured-packages{

    padding:100px 0;

}

.package-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.package-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:var(--transition);

}

.package-card:hover{

    transform:translateY(-10px);

}

.package-card img{

    height:260px;

    object-fit:cover;

}

.package-content{

    padding:25px;

}

.package-content h3{

    margin-bottom:12px;

}

.package-content p{

    color:var(--gray);

    margin-bottom:12px;

}

.package-content h4{

    color:var(--primary);

    margin-bottom:20px;

}

.package-content a{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:12px 24px;

    border-radius:30px;

    transition:var(--transition);

}

.package-content a:hover{

    background:var(--secondary);

}

/*==================================================
        STATISTICS
==================================================*/

.statistics{

    padding:90px 0;

    background:linear-gradient(rgba(10,77,104,.9),rgba(10,77,104,.9)),
    url("../images/bg-counter.jpg") center/cover;

    color:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    text-align:center;

}

.stat-box h2{

    font-size:50px;

    color:var(--accent);

    margin-bottom:10px;

}

.stat-box p{

    font-size:18px;

}

/*==================================================
            TESTIMONIAL SECTION
==================================================*/

.testimonials{

    padding:100px 0;

    background:#f8fbff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.testimonial-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card h3{

    color:#FFD700;

    margin-bottom:15px;

}

.testimonial-card p{

    color:#666;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:var(--primary);

}

/*==================================================
                VIDEO SECTION
==================================================*/

.promo-video{

    padding:100px 0;

    background:#f5f8fb;

    text-align:center;

}

.promo-video video{

    width:100%;

    max-width:1000px;

    border-radius:20px;

}

/*==================================================
                CONTACT
==================================================*/

.contact{

    padding:100px 0;

}

.contact-info{

    text-align:center;

}

.contact-info p{

    font-size:18px;

    margin:15px 0;

}

/*==================================================
                MAP
==================================================*/

.map iframe{

    width:100%;

    display:block;

}

/*==================================================
                FOOTER
==================================================*/

.footer{

    background:#0a2338;

    color:#fff;

    padding:70px 0 20px;

}

.footer .container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer h2,
.footer h3{

    margin-bottom:20px;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer a{

    color:#ddd;

}

.footer a:hover{

    color:var(--accent);

}

.footer-social p{

    line-height:2;

}

.copyright{

    margin-top:50px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:20px;

    font-size:15px;

}

/*==================================================
            RESPONSIVE DESIGN
==================================================*/

@media(max-width:992px){

.hero-content h1{

font-size:48px;

}

.booking-form{

grid-template-columns:1fr;

}

.full-width{

grid-column:auto;

}

.booking-form button{

grid-column:auto;

}

}

@media(max-width:768px){

.header .container{

flex-direction:column;

}

.navbar ul{

flex-direction:column;

gap:15px;

text-align:center;

}

.hero-content h1{

font-size:36px;

}

.hero-buttons a{

display:block;

margin:15px auto;

}

.newsletter input{

width:100%;

}

}

/* ================= MOBILE ================= */

@media (max-width:768px){

.hero{
    height:100vh;
    padding:0 20px;
    text-align:center;
}

.hero-content{
    width:100%;
}

.hero h1{
    font-size:42px;
    line-height:1.2;
}

.hero p{
    font-size:18px;
    line-height:28px;
}

.buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
    align-items:center;
}

.buttons a{
    width:90%;
    text-align:center;
}

}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.whatsapp-btn img{

    width:35px;

    height:35px;

}

.whatsapp-btn:hover{

    transform:scale(1.1);

}

#backToTop{

    position:fixed;

    bottom:25px;

    left:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#ffb703;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    display:none;

    z-index:9999;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

#backToTop:hover{

    background:#ffb703;

    color:#000;

    transform:translateY(-5px);

}

nav ul li a, 
.navbar a, 
.nav-links a {
    color: #000000 !important; 
    font-weight: 600;
}

nav ul li a:hover, 
.navbar a:hover, 
.nav-links a:hover {
    color: #ffb703 !important;
}

section.why-choose-us, 
.features-section,
.booking + section {
    padding-top: 20px !important;
    margin-top: 0 !important;
}

.section-title span,
.sub-title {
    font-weight: 800 !important;
    letter-spacing: 1.5px;
}

.feature-icon {
    font-size: 38px;
    color: #2a9d8f;
    margin-bottom: 12px;
    display: block;
}

section, 
.booking, 
.packages, 
.popular-places {
    padding-bottom: 10px !important;
    margin-bottom: 0px !important;
}

section.why-choose-us,
.features-section,
.why-choose {
    padding-top: 10px !important;
    margin-top: 0px !important;
}

.section-title {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    padding-top: 0 !important;
}

.contact, 
#contact,
section:has(.contact-info) {
    padding-top: 20px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
}

.contact-info,
.contact-details,
.contact .container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.contact .section-title,
.contact h2,
.contact span {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

.contact p,
.contact-info p,
.contact-item {
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin: 6px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

/* ==========================================
   DESKTOP NAVBAR FIX (CLEAN LAYOUT)
   ========================================== */
header, nav, .navbar, .header-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 15px 40px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative !important;
    left: 0 !important;
    margin: 0 !important;
}

.nav-links, .navbar-nav, nav ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 25px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    position: static !important;
    background: transparent !important;
}

.nav-links a, .navbar-nav a, nav ul li a {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    text-decoration: none !important;
}

.menu-toggle, .hamburger {
    display: none !important;
}

/* Book Now Button Styling */
.book-btn, .book-now-btn, .nav-btn {
    background-color: #f1b73e !important;
    color: #000000 !important;
    padding: 10px 22px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* ==========================================
   CLEAN DESKTOP NAVBAR
   ========================================== */
.navbar {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 30px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar .logo img {
    height: 35px !important;
    width: auto !important;
}

.menu-toggle {
    display: none !important; /* Desktop par toggle button hide rahega */
}

.nav-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links li a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    text-decoration: none !important;
}

.nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.book-btn {
    background-color: #f1b73e !important;
    color: #000000 !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* ==========================================
   MOBILE VIEW (768px & BELOW)
   ========================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 15px !important;
    }

    .menu-toggle {
        display: block !important;
        background: transparent;
        border: none;
        font-size: 18px;
        cursor: pointer;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        padding: 15px 0 !important;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
}

.btn-explore {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px; 
    background-color: #007bff; 
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-explore:hover {
    background-color: #0056b3;
    color: #ffffff !important;
}

.destination-container, .places-container, .destinations-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
}

.destination-card, .place-card, .card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    min-height: 420px !important;
    padding-bottom: 20px !important;
    background: #ffffff !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

.card-content, .destination-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 15px !important;
}

.card-content p, .destination-card p {
    flex-grow: 1 !important;
    margin-bottom: 15px !important;
}

.btn-explore, .destination-card .btn-explore {
    margin-top: auto !important;
    align-self: flex-start !important;
}

.destination-card img, .card img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
}

/* ==========================================
   FEATURES CARDS GRID LAYOUT
   ========================================== */

.features-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 20px !important;
    max-width: 1200px !important;
    margin: 30px auto !important;
    padding: 0 15px !important;
}

.feature-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 25px 20px !important;
    text-align: center !important;
    flex: 1 1 220px !important;
    max-width: 270px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.feature-card i, .feature-icon {
    font-size: 32px !important;
    color: #f1b73e !important;
    margin-bottom: 15px !important;
}

.feature-card h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #222222 !important;
    margin-bottom: 10px !important;
}

.feature-card p {
    font-size: 13px !important;
    color: #666666 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.features-container + *, 
#why-choose-us + section,
.why-choose-us + section {
    padding-top: 10px !important;
    margin-top: 0 !important;
}

.section-title, 
.section-title *, 
p.tagline, 
p.sub-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.filter-buttons {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 25px 0 40px 0 !important;
    flex-wrap: wrap !important;
}

.filter-btn {
    cursor: pointer !important;
    pointer-events: auto !important;
    padding: 10px 22px !important;
    border: 1px solid #0056b3 !important;
    background-color: #ffffff !important;
    color: #0056b3 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    transition: all 0.3s ease !important;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #0056b3 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.25) !important;
}

.package-card.hide {
    display: none !important;
}

.packages-container {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.package-card {
    background: #ffffff !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid #eef2f5 !important;
    display: flex !important;
    flex-direction: column !important;
    padding-bottom: 20px !important;
}

.package-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15) !important;
}

.package-card img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    background-color: #e2e8f0 !important;
}

.package-card h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 15px 15px 8px 15px !important;
}

.package-card .duration {
    font-size: 14px !important;
    color: #64748b !important;
    margin: 0 15px 10px 15px !important;
}

.package-card .price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0284c7 !important;
    margin: 0 15px 15px 15px !important;
}

.package-card .btn-details {
    display: inline-block !important;
    width: fit-content !important;
    margin: 0 15px !important;
    padding: 8px 20px !important;
    background-color: #004d61 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: background-color 0.3s ease !important;
}

.package-card .btn-details:hover {
    background-color: #002b36 !important;
}

.package-card.hide-card {
    display: none !important;
}

.subtitle {
    color: #2a9d8f !important; 
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
}

@media screen and (max-width: 768px) {
    footer {
        width: 100% !important;
        position: static !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    footer > div,
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        gap: 25px !important;
        padding: 0 !important;
    }
}

/* =========================
   404 ERROR PAGE
========================= */

.error-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

    background:#f5f7fa;

}

.error-content{

    max-width:600px;

}

.error-content h1{

    font-size:150px;

    line-height:1;

    margin:0;

    color:#0a2342;

    font-weight:800;

}

.error-content h2{

    font-size:32px;

    margin:20px 0 10px;

    color:#222;

}

.error-content p{

    font-size:18px;

    color:#666;

    margin-bottom:30px;

}

.error-btn{

    display:inline-block;

    padding:14px 30px;

    border-radius:30px;

    background:#0a2342;

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.error-btn:hover{

    transform:translateY(-3px);

    opacity:.9;

}

@media(max-width:600px){

    .error-content h1{

        font-size:100px;

    }

    .error-content h2{

        font-size:25px;

    }

    .error-content p{

        font-size:16px;

    }

}