* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #1f261f;
    background: #ffffff;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 18, 12, 0.68);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.header img {
    height: 54px;
    display: block;
}

.header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.header ul li a.active,
.header ul li a:hover {
    color: #ffb15c;
}

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    background:
        linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.5)),
        url("images/camp-page-bg.jpg");
    background-size: cover;
    background-position: center;
}

.hero-mountain {
    background:
        linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.56)),
        url("images/trek-banner.jpg");
    background-size: cover;
    background-position: center;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 900px);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.08;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 12px;
}

.hero-buttons {
    margin-top: 24px;
}

.hero-buttons a,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: #ff6b00;
    color: white;
    border: 0;
    cursor: pointer;
}

.btn-primary:hover {
    background: #e85f00;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-grid,
.service-grid,
.trek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    max-width: 1120px;
    margin: auto;
}

.card,
.trek-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card {
    padding: 20px;
}

.card:hover,
.trek-card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.page-banner {
    position: relative;
    min-height: 48vh;
    padding-top: 125px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/trek-banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.day-banner {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/dayara.jpg");
}

.hotel-banner {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/valleyofflowers.jpg");
}

.car-banner {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/nagtibba.jpg");
}

.activities-banner {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("images/activity-paragliding.jpg");
}

.pilgrimage-banner {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.58)),
        url("images/pilgrimage-kedarnath.jpg");
    background-position: center 42%;
}

.pilgrimage-video-banner {
    min-height: 62vh;
    background: #111;
}

.camp-banner {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.68)),
        url("images/camp-page-bg.jpg");
}

.contact-banner {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.62)),
        url("images/valleyofflowers.jpg");
    background-position: center 48%;
}

.contact-video-banner {
    min-height: 62vh;
    background: #111;
}

.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.72)),
        radial-gradient(circle at center, rgba(255, 107, 0, 0.16), transparent 45%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    width: min(92%, 850px);
}

.page-banner-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-banner-content p,
.section-title p {
    font-size: 1.05rem;
}

.popular-treks {
    background: #f6f7f3;
}

.home-gallery {
    background: #f6f7f3;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 260px;
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 240px;
    background: #111;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.photo-card-large {
    grid-row: span 2;
}

.photo-card-wide {
    grid-column: span 2;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.photo-card:hover img {
    transform: scale(1.04);
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.74));
}

.photo-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    color: white;
    text-align: left;
}

.photo-caption h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.photo-caption p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.45;
}

.activities-section {
    background: #f6f7f3;
}

.activities-alt {
    background: #ffffff;
}

.stay-alt {
    background: #ffffff;
}

.pilgrimage-alt {
    background: #ffffff;
}

.camp-stargazing-section {
    background:
        linear-gradient(rgba(5, 10, 24, 0.82), rgba(5, 10, 24, 0.92)),
        url("images/camp-page-bg.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

.camp-night-section {
    background:
        linear-gradient(rgba(5, 10, 24, 0.84), rgba(5, 10, 24, 0.9)),
        url("images/camp-page-bg.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

.camp-night-section .section-title p {
    color: rgba(255, 255, 255, 0.82);
}

.camp-night-section .trek-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1f261f;
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.section-title {
    margin-bottom: 28px;
}

.trek-card {
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.trek-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.trek-card img.vehicle-img {
    object-fit: contain;
    padding: 12px;
    background: #f6f6f4;
}

.vehicle-photo {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f6f6f4;
}

.vehicle-photo img {
    height: 100%;
}

.rumion-clean::after {
    content: "";
    position: absolute;
    left: 39%;
    top: 68%;
    width: 22%;
    height: 6%;
    background: #f4f4f1;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hotel-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 115px 115px;
    gap: 4px;
}

.hotel-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-gallery img:first-child {
    grid-row: 1 / 3;
}

.trek-card h3,
.trek-card p,
.trek-card a {
    margin-left: 18px;
    margin-right: 18px;
}

.trek-card h3 {
    margin-top: 16px;
    margin-bottom: 8px;
}

.trek-card p {
    color: #555;
    margin-bottom: 8px;
}

.trek-card a {
    margin-top: 10px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.cta {
    background: #111;
    color: white;
}

.cta p {
    margin-bottom: 18px;
}

.contact-section {
    background:
        linear-gradient(rgba(13, 24, 18, 0.86), rgba(13, 24, 18, 0.9)),
        url("images/valleyofflowers.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-section .section-title p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-form {
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.contact-form .btn-primary {
    justify-self: center;
}

.contact-email {
    margin-top: 10px;
    color: #1f261f;
    overflow-wrap: anywhere;
}

.contact-email a,
footer a {
    color: inherit;
}

form {
    display: grid;
    gap: 14px;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font: inherit;
    background: white;
}

textarea {
    resize: vertical;
}

footer {
    background: #000;
    color: white;
    padding: 30px;
    text-align: center;
}

footer p {
    margin-top: 8px;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
    }

    .header ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    section {
        padding: 60px 16px;
    }

    section h2 {
        font-size: 2rem;
    }

    .page-banner {
        padding-top: 155px;
    }

    .page-banner-content h1 {
        font-size: 2.1rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .photo-card-large,
    .photo-card-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .contact-form {
        padding: 20px;
    }
}
