/* =====================================================
   RADHA RAMAN TRAVELS
   Main Stylesheet
   Version: 1.0
===================================================== */

/* ==========================
   GOOGLE FONTS & VARIABLES
========================== */
:root{

    --primary:#0F172A;
    --secondary:#2563EB;
    --accent:#F97316;
    --white:#ffffff;
    --text:#334155;
    --light:#F8FAFC;

    --shadow:0 20px 50px rgba(0,0,0,.15);

    --radius:18px;

    --transition:.35s ease;

}


/* ==========================
   RESET
========================== */

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    color:var(--text);
    background:var(--light);
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(90%,1200px);
    margin:auto;

}

/* ==========================
   BUTTONS
========================== */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 32px;

    border-radius:50px;

    font-weight:600;

    transition:all .35s ease;

}

.btn-primary{

    background:var(--accent);
    color:white;

}

.btn-primary:hover{

    transform:translateY(-3px);

    background:#e86100;

}

.btn-outline{

    background:transparent;

    color:var(--primary);

    border:2px solid var(--primary);

    transition:.3s ease;

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

/* =====================================
   HEADER
===================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    padding:20px 0;

    transition:.4s ease;

}
.header.sticky{

    padding:12px 0;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:white;

    border:1px solid rgba(15,23,42,.08);

    border-radius:60px;

    padding:4px 14px;

    box-shadow:0 8px 25px rgba(15,23,42,.08);

}
.navbar .nav-links li a{

    color:var(--primary);

}
/* Logo */

.logo{

    display:flex;

    align-items:center;

    height:80px;

    overflow:hidden;

}

.logo img{

    width:300px;

    height:80px;

    object-fit:contain;

    display:block;

}

/* Navigation */

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-links a{

    font-weight:500;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

.nav-links a:hover{

    color:#FFD9B8;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-btn{

    padding:13px 28px;

}
.nav-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.menu-toggle{
    display:none;
    justify-content:center;
    align-items:center;

    width:48px;
    height:48px;

    border:none;
    border-radius:12px;

    background:rgba(15,23,42,.08);
    color:var(--primary);

    font-size:22px;
    cursor:pointer;

    transition:.3s ease;
}

.menu-toggle:hover{
    background:var(--accent);
}
/* ==========================
   HERO
========================== */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/* Background Slider */

.hero-slider{

    position:absolute;

    inset:0;

}

.slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    opacity:0;

    transition:opacity 1s ease;

}

.slide.active{

    opacity:1;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(15,23,42,.55);

}

.hero-content{

    position:relative;

    z-index:5;

    color:white;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    margin-bottom:25px;

}

.hero h2{

    font-family:'Poppins',sans-serif;

    font-size:68px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero p{

    max-width:620px;

    line-height:1.8;

    font-size:18px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:18px;

}

/* =====================================
   BOOKING CARD
===================================== */

.booking-card{

    position:absolute;

    right:8%;

    bottom:60px;

    width:340px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:20px;

    padding:30px;

    color:white;

    z-index:10;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.booking-card h3{

    margin-bottom:8px;

    font-size:24px;

}

.booking-card p{

    margin-bottom:20px;

    color:#ddd;

}

.booking-card form{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.booking-card input{

    padding:14px;

    border:none;

    border-radius:10px;

    outline:none;

}

.booking-card button{

    padding:15px;

    border:none;

    border-radius:10px;

    background:var(--accent);

    color:white;

    font-weight:600;

    cursor:pointer;

}

/* =====================================
   SCROLL INDICATOR
===================================== */

.scroll-indicator{

    position:absolute;

    bottom:25px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    color:white;

    z-index:20;

}

.mouse{

    width:28px;

    height:46px;

    border:2px solid white;

    border-radius:30px;

    margin-top:8px;

    position:relative;

}

.wheel{

    width:5px;

    height:10px;

    background:white;

    border-radius:20px;

    position:absolute;

    top:8px;

    left:50%;

    transform:translateX(-50%);

    animation:scrollWheel 1.6s infinite;

}

@keyframes scrollWheel{

    0%{

        top:8px;
        opacity:1;

    }

    100%{

        top:24px;
        opacity:0;

    }

}

/* =====================================
   STATS
===================================== */

.stats{

    background:white;

    padding:100px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat{

    background:white;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:all .35s ease;

    cursor:pointer;

}
.stat:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.stat h2{

    font-size:48px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:12px;

}

.stat p{

    color:#64748B;

    font-size:16px;

    font-weight:500;

    line-height:1.6;

}
.stat i{

    font-size:48px;

    color:var(--accent);

    margin-bottom:20px;

    display:block;

    transition:.3s ease;

}
.stat:hover i{

    transform:scale(1.15) rotate(-8deg);

}
/* =====================================
   DESTINATIONS
===================================== */

.destination-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    background:white;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

    cursor:pointer;

    transition:all .4s ease;

}

.destination-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;

    transition:transform .6s ease;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading span{

    color:var(--accent);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-heading h2{

    font-size:46px;

    margin:15px 0;

    color:var(--primary);

    font-family:'Poppins',sans-serif;

}

.section-heading p{

    max-width:650px;

    margin:auto;

    color:#64748B;

    line-height:1.8;

}

.destination-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.destination-card:hover{

    transform:translateY(-12px);

    box-shadow:0 35px 70px rgba(0,0,0,.18);

}

.destination-card:hover img{

    transform:scale(1.08);

}

.destination-content{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:30px;

    background:linear-gradient(transparent,rgba(0,0,0,.85));

    color:white;

}

.destination-content h3{

    font-size:30px;

    margin-bottom:6px;

}

.destination-content p{

    display:flex;

    align-items:center;

    gap:8px;

    color:#ddd;

}

/*=========================================
            SERVICES
=========================================*/

.section{

    padding:120px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--accent);

    letter-spacing:3px;

    font-weight:700;

}

.section-title h2{

    font-size:48px;

    color:var(--primary);

    margin:15px 0;

}

.section-title p{

    color:#64748B;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.services{

    background:#F8FAFC;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    padding:50px 35px;

    border-radius:24px;

    text-align:center;

    transition:all .4s ease;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

    cursor:pointer;

}
.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--secondary),
        var(--accent)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .4s ease;

}
.service-card:hover::before{

    transform:scaleX(1);

}

.service-card i{

    font-size:55px;

    color:var(--secondary);

    margin-bottom:25px;

    transition:all .35s ease;

}

.service-card h3{

    margin-bottom:15px;

    color:var(--primary);

}

.service-card p{

    line-height:1.7;

    color:#64748B;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(37,99,235,.15);

}

.service-card:hover i{

    color:var(--accent);

    transform:scale(1.15) rotate(-8deg);

}
/*=========================================
        WHY CHOOSE US
=========================================*/

.why-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.why-image{

    position:relative;

}

.why-image img{

    width:100%;

    display:block;

    border-radius:24px;

    object-fit:cover;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

    transition:all .4s ease;

}
.owner-card{

    position:absolute;

    left:24px;

    bottom:24px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    padding:18px 24px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    transition:.3s;

}

.owner-card h4{

    color:var(--primary);

    font-size:20px;

    margin-bottom:4px;

}

.owner-card p{

    color:#64748B;

    font-size:15px;

}
.why-image:hover img{

    transform:scale(1.02);

}

.why-image:hover .owner-card{

    transform:translateY(-4px);

}

.why-content span{

color:var(--accent);

font-weight:700;

letter-spacing:2px;

}

.why-content h2{

font-size:48px;

margin:18px 0;

color:var(--primary);

}

.why-content>p{

line-height:1.8;

margin-bottom:40px;

color:#64748B;

}

.why-grid{

display:grid;

gap:25px;

}

.why-box{

display:flex;

align-items:flex-start;

gap:20px;

padding:22px;

background:white;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.05);

transition:.3s;

}

.why-box i{

font-size:28px;

color:var(--secondary);

margin-top:6px;

}

.why-box:hover{

transform:translateX(10px);

box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.why-box h4{

margin-bottom:8px;

color:var(--primary);

}

.why-box p{

color:#64748B;

line-height:1.6;

}
/*=========================================
        FEATURED PACKAGES
=========================================*/

.packages{

background:#F8FAFC;

}

.package-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.package-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.package-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    display:block;

    transition:transform .6s ease;

}

.package-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}
.package-card:hover img{

    transform:scale(1.08);

}

.package-content{

padding:28px;

}

.package-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:18px;

}

.package-top h3{

color:var(--primary);

}

.price{

    color:var(--accent);

    font-weight:700;

    font-size:28px;

    line-height:1;

}

.duration{

margin-bottom:20px;

color:#64748B;

}

.package-content ul{

margin-bottom:28px;

}

.package-content li{

margin:10px 0;

color:#475569;

}

.package-content li i{

color:var(--secondary);

margin-right:8px;

}

.package-content .btn{

width:100%;

}
/*=========================================
        TESTIMONIALS
=========================================*/

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.testimonial-card{

background:white;

padding:35px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(37,99,235,.15);

}

.stars{

font-size:22px;

color:#FFC107;

margin-bottom:20px;

}

.testimonial-card p{

line-height:1.8;

margin-bottom:25px;

color:#475569;

}

.testimonial-card h4{

color:var(--primary);

margin-bottom:5px;

}

.testimonial-card span{

color:#64748B;

}
.testimonial-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.testimonial-top i{

    font-size:30px;

    color:rgba(37,99,235,.15);

}
.reviewer{

    border-top:1px solid #E5E7EB;

    padding-top:18px;

    margin-top:25px;

}

.reviewer h4{

    color:var(--primary);

    margin-bottom:5px;

}

.reviewer span{

    color:#64748B;

    font-size:14px;

}
.reviews-button{

    text-align:center;

    margin-top:50px;

}
/* =========================================
   GOOGLE REVIEWS BUTTON
========================================= */

.review-button{

    color:var(--primary);

    border:2px solid var(--primary);

}

.review-button:hover{

    background:var(--primary);

    color:white;

}
/*=========================================
            CONTACT
=========================================*/

.contact{

background:white;

}

.contact-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:start;

}

.info-box{

display:flex;

gap:20px;

margin-bottom:35px;

}

.info-box i{

font-size:28px;

color:var(--secondary);

margin-top:5px;

}

.info-box h4{

margin-bottom:8px;

color:var(--primary);

}

.info-box a{

    display:block;

    margin-bottom:5px;

    color:#64748B;


}
.info-box p{

color:#64748B;

text-decoration:none;

}

.contact-form{

background:#F8FAFC;

padding:40px;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.contact-form form{

display:flex;

flex-direction:column;

gap:18px;

}

.contact-form input,
.contact-form textarea{

padding:16px;

border:1px solid #ddd;

border-radius:12px;

font-family:inherit;

outline:none;

}

.contact-form button{

border:none;

cursor:pointer;

}

.whatsapp-btn{

margin-top:25px;

display:inline-flex;

gap:12px;

align-items:center;

}

/* =========================================
   HERO CONTACT BUTTON
========================================= */

.hero .btn-outline{

    color:white;

    border:2px solid white;

    background:transparent;

}

.hero .btn-outline:hover{

    background:white;

    color:var(--primary);

}
/* =========================================
   FOOTER
========================================= */

.footer{

    background:var(--primary);

    color:white;

    padding-top:70px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1.5fr;

    gap:60px;

    padding-bottom:50px;

}


/* Footer Brand */

.footer-brand p{

    max-width:320px;

    color:#CBD5E1;

    line-height:1.7;

    margin-bottom:20px;

}

.footer-tagline{

    color:var(--accent);

    font-weight:700;

    letter-spacing:1px;

}


/* Footer Headings */

.footer h3{

    color:white;

    margin-bottom:22px;

}


/* Footer Links */

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.3s ease;

}

.footer-links a:hover{

    color:var(--accent);

    transform:translateX(5px);

}


/* Footer Contact */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-contact a{

    color:#CBD5E1;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.3s ease;

}

.footer-contact a:hover{

    color:white;

}

.footer-contact i{

    color:var(--accent);

}


/* WhatsApp Button */

.footer-whatsapp{

    margin-top:10px;

    background:#25D366;

    color:white !important;

    padding:12px 18px;

    border-radius:8px;

    width:max-content;

}

.footer-whatsapp:hover{

    transform:translateY(-3px);

}


/* Footer Bottom */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    padding:20px 0;

}

.footer-bottom .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.footer-bottom p{

    color:#94A3B8;

    font-size:14px;

}
.footer-logo{

    display:block;

}

.footer-logo img{

    width:240px;

    height:auto;

    display:block;

    margin-bottom:20px;

    filter:brightness(0) invert(1);

}