/* Home page styles (moved unchanged from home.html, same order) */

/* GLOBAL SCROLL ADJUSTMENT FOR FIXED HEADER */
html {
    scroll-padding-top: 125px;
}

/* GLOBAL SECTION SPACING */
.hero-sec {
    margin-bottom: 120px !important;
}

#tours {
    margin-bottom: 140px !important;
}

#offers {
    margin-top: 130px !important;
}

/* --- HERO SLIDESHOW --- */
.hero-sec {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    overflow:hidden;
    z-index:1;
}

.hero-slide {
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.6s ease-in-out;
}

.hero-slide.active {
    opacity:1;
}

.hero-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.10);
    z-index:2;
}

/* WHY CHOOSE section */
#offers {
    position: relative;
    padding: 150px 0 160px;
    background: linear-gradient(180deg,
        rgba(240,248,255,0.8) 0%,
        rgba(255,255,255,0.95) 100%);
    overflow: hidden;
}

#offers::before {
    content: "";
    position: absolute;
    top: -130px;
    left: -40%;
    width: 180%;
    height: 320px;
    background: radial-gradient(circle at 50% 10%,
        rgba(120,160,255,0.55),
        rgba(90,130,255,0.22),
        transparent 70%);
    filter: blur(55px);
    opacity: 0.55;
}

#offers::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -25%;
    width: 150%;
    height: 300px;
    background: radial-gradient(circle at 50% 120%,
        rgba(130,170,255,0.4),
        transparent 70%);
    filter: blur(70px);
    opacity: 0.4;
}

.why-card {
    min-height: 350px;
    max-width: 360px;
    padding: 2.8rem 2rem;
    border-radius: 30px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 25px 60px rgba(10,30,90,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.35s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 35px 70px rgba(0,0,60,0.22);
    border-color: rgba(255,255,255,0.7);
}

.icon-circle {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: linear-gradient(145deg, #6fb1ff, #1d3a85);
    box-shadow: 0 10px 28px rgba(40,95,200,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 22px;
}

.why-card h5 {
    color: #102544;
    font-size: 1.32rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.why-card p {
    color: #1c355d;
    max-width: 260px;
    margin-top: auto;
    opacity: .88;
    font-size: 0.96rem;
    line-height: 1.55;
}
