/* ====================== Global Reset ====================== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* ====================== Banner & Content ====================== */
.banner{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.content{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
}

/* ====================== Navbar ====================== */
nav{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(21,74,74);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
}

nav .logo{
    width: 60px;
}

.navbar{
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 22px;
    border-radius: 5px;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active{
    background-color: white;
    color: black;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hamburger Menu */
.hamburger{
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Overlay */
.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.overlay.active{
    opacity: 1;
    visibility: visible;
}

/* ====================== Title & Button ====================== */
.title h1{
    font-size: 10vh;
    color: white;
    text-shadow: 2px 2px 8px black;
    margin-bottom: 15px;
}

.title p{
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}

.button{
    display: inline-block;
    font-size: 25px;
    padding: 10px 30px;
    color: rgb(21,74,74);
    background-color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.button:hover{
    transform: scale(1.05);
    background-color: rgb(21,74,74);
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* ====================== Responsive ====================== */

/* Large devices / Laptops */
@media(max-width: 1200px){
    nav .logo{ width: 50px; }
    .navbar a{ font-size: 16px; padding: 8px 18px; }
    .title h1{ font-size: 8vh; }
    .button{ font-size: 22px; padding: 8px 25px; }
}

/* Tablets / Medium Devices */
@media(max-width: 914px){
    .hamburger{ display: block; }

    .navbar{
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 80px;
        background-color: rgb(21,74,74);
        gap: 30px;
        transition: 0.3s;
        z-index: 1001;
    }

    .navbar.active{ right: 0; }

    .navbar a{
        display: block;
        font-size: 18px;
        margin-left: 20px;
    }

    nav{ justify-content: space-between; }
}

/* Small devices / Phones */
@media(max-width: 600px){
    .banner{ height: 60vh; }
    .banner video{ height: 60vh; }
    .title h1{ font-size: 6vh; }
    .title p{ font-size: 16px; }
    .button{ font-size: 18px; padding: 6px 15px; }
}

/* Extra Small Devices / Ultra Small Phones */
@media(max-width: 480px){
    nav .logo{ width: 40px; }
    .navbar a{ font-size: 14px; padding: 6px 10px; margin-left: 15px; }
    .banner{ height: 50vh; }
    .banner video{ height: 50vh; }
    .title h1{ font-size: 5vh; }
    .title p{ font-size: 14px; }
    .button{ font-size: 16px; padding: 5px 12px; }
}

/* Minimum width phones (320px) */
@media(max-width: 360px){
    nav .logo{ width: 35px; }
    .navbar a{ font-size: 13px; padding: 5px 8px; margin-left: 10px; }
    .title h1{ font-size: 4.5vh; }
    .title p{ font-size: 12px; }
    .button{ font-size: 14px; padding: 4px 10px; }
    .banner{ height: 45vh; }
    .banner video{ height: 45vh; }
}

/* ====================== Services Section ====================== */

.text h2 {
    font-size: 40px;
    font-weight: 650;
    margin-top: 40px;
    margin-bottom: 10px;
    line-height: 2;
    text-align: center;
}

/* Grid layout for service boxes */
.rowitems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    align-items: center;
    text-align: center;
    margin: 20px 30px 10px 30px;
}

.container-box {
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    padding: 50px 10px;
    transition: all 0.7s ease;
    cursor: pointer;
    background-color: #fff;
}

.container-image img {
    height: 100px;
    width: 100px;
    padding: 10px;
    margin-bottom: 15px;
}

.container-box h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 550;
}

.container-box p {
    font-size: 16px;
    color: #808080;
}

.container-box:hover {
    transform: translateY(-5px);
    box-shadow: 5px 20px 50px rgba(78, 78, 78, 0.1);
    border: 1px solid transparent;
    border-radius: 0px;
}

/* ====================== Responsive CSS ====================== */

/* Large devices / Laptops */
@media (max-width: 1200px) {
    .container-box {
        padding: 40px 8px;
    }

    .container-box h4 {
        font-size: 18px;
    }

    .container-box p {
        font-size: 15px;
    }
}

/* Medium devices / Tablets */
@media (max-width: 914px) {
    .rowitems {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        margin: 20px 20px;
    }

    .container-box {
        padding: 35px 8px;
    }

    .container-image img {
        height: 90px;
        width: 90px;
    }

    .container-box h4 {
        font-size: 17px;
    }

    .container-box p {
        font-size: 14px;
    }
}

/* Small devices / Phones */
@media (max-width: 600px) {
    .rowitems {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin: 15px 15px;
    }

    .container-box {
        padding: 25px 5px;
    }

    .container-image img {
        height: 80px;
        width: 80px;
    }

    .container-box h4 {
        font-size: 16px;
    }

    .container-box p {
        font-size: 13px;
    }
}

/* Extra small devices / Minimum width phones */
@media (max-width: 480px) {
    .rowitems {
        grid-template-columns: 1fr; /* single column for very small screens */
        gap: 15px;
        margin: 10px 10px;
    }

    .container-box {
        padding: 20px 5px;
    }

    .container-image img {
        height: 70px;
        width: 70px;
    }

    .container-box h4 {
        font-size: 15px;
    }

    .container-box p {
        font-size: 12px;
    }
}

/* ====================== Timeline Itinerary Section ====================== */

.itinerary {
    width: 80%;
    padding: 40px 10%;
    background: linear-gradient(135deg, #f0f8ff, #ffffff);
    margin: auto;
}

.itinerary .package-title h2 {
    font-size: 40px;
    color: #222;
    text-align: center;
    margin-bottom: 5px;
}

.itinerary .sub-heading {
    text-align: center;
    color: #555;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Timeline container */

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding-left: 20px;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 30px;
    width: 4px;
    height: 100%;
    background: #1e90ff;
    border-radius: 5px;
}

/* Individual timeline item */

.timeline-item {
    display: flex;
    position: relative;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-icon {
    position: relative;
    z-index: 0;
    background: #1e90ff;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1e3d7b;
}

.timeline-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Brochure Button */
.brochure-btn {
    text-align: center;
    margin-top: 40px;
}

.brochure-btn a {
    display: inline-block;
    background: #1e90ff;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.brochure-btn a i {
    margin-right: 10px;
    font-size: 20px;
}

.brochure-btn a:hover {
    background: #0074cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ====================== Responsive Timeline ====================== */

/* Medium devices / Tablets */
@media (max-width: 914px) {
    .timeline:before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row;
        margin-bottom: 30px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-right: 15px;
    }

    .timeline-content {
        padding: 18px 20px;
    }

    .timeline-content h3 {
        font-size: 20px;
    }

    .timeline-content p {
        font-size: 15px;
    }

    .itinerary {
        width: 90%;
        padding: 30px 5%;
    }
}

/* Small devices / Phones */
@media (max-width: 600px) {
    .timeline {
        padding-left: 15px;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .timeline-content {
        width: 100%;
        padding: 15px 15px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .itinerary {
        width: 95%;
        padding: 20px 2.5%;
    }

    .brochure-btn a {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Extra small devices / Minimum width phones */
@media (max-width: 480px) {
    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .timeline-content {
        padding: 12px 12px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }

    .brochure-btn a {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Info Section (Inclusions, Exclusions, Policies) */

.info-section {
    padding: 0px 10%;
    background: #ffffff;
}

.info-section .package-title h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 5px;
}

.info-section .sub-heading {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-card {
    background: #f8fbff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border-top: 5px solid #1e90ff;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.info-card h3 {
    font-size: 22px;
    color: #1e3d7b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card h3 i {
    font-size: 26px;
    color: #1e90ff;
}

.info-card ul {
    list-style: none;
    margin-left: 0;
}

.info-card ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px dashed #d0dcef;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card .sub-text {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* Mobile styling */
@media(max-width: 600px){
    .info-section {
        padding: 50px 5%;
    }
}

/* Packages */

.package-title{
    text-align: center;
}

.package-title h2{
    font-size: 40px;
    font-weight: 650;
    padding-top: 75px;
    padding-bottom: 10px;
    line-height: 2;
}

.package-content{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.image{
    position: relative;
    transition: all 0.3s cubic-bezier(0.445,0.05,0.55,0.95);
    cursor: pointer;
    filter: brightness(95%);
}

.image img{
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

.image h3{
    color: white;
    position: absolute;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    top: 10px;
    right: 20px;
}

.dest-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-bottom: 50px;
}

.location h4{
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}

.pac-details li{
    font-size: 19px;
    color: #4c4c4c;
    margin-left: 15px;
    margin-bottom: 2px;
    list-style-type: disc;
}

.image:hover{
    filter: brightness(120%);
    transform: scale(1.03);
}

/* Locations */
.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* auto-responsive */
    gap: 30px;          /* space between cards */
    padding: 10px 0;
}

/* Individual card */
.col-content {
    position: relative;
    filter: brightness(95%);
    transition: all 0.3s cubic-bezier(0.445,0.05,0.55,0.95);
    border-radius: 27px;
    overflow: hidden;   /* ensures image corners match card */
}

/* Image inside card */
.col-content img {
    width: 100%;
    height: 350px;
    object-fit: cover;  /* keeps aspect ratio and crops perfectly */
    display: block;
    transition: transform 0.3s, filter 0.3s;
}

/* Titles */
.col-content h5 {
    position: absolute;
    font-size: 25px;
    color: rgb(7, 208, 230);
    font-weight: 500;
    left: 20px;
    bottom: 8px;
    cursor: pointer;
}

.col-content p {
    position: absolute;
    font-size: 20px;
    color: white;
    left: 20px;
    bottom: 80px;
    cursor: pointer;
}

/* Hover effect */
.col-content:hover {
    filter: brightness(120%);
    transform: scale(1.03);
    cursor: pointer;
}



/* Footer */

.footer{
    margin-top: 80px;
    background-color: rgb(21, 74, 74);
}

.foot{
    padding: 20px 0;
}

.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.footer-info{
    padding: 20px 0;
    font-size: 17px;
    color: #dddddd;
    text-align: center;
    transition: ease 0.30s;
}

.footlinks h4{
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    position: relative;
}


.footlinks h4::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    left: 0;
    bottom: -7px;
    background: white;
}

.footlinks ul li{
    margin-bottom: 15px;
}

.footlinks ul li a{
    font-size: 17px;
    color: #dddddd;
    display: block;
    transition: ease 0.30s;
}

.footlinks ul li a:hover{
    transform: translate(6px);
    color: white;
}

.social a{
    font-size: 25px;
    margin: 4px;
    height: 40px;
    width: 40px;
    color: rgb(21, 74, 74);
    background-color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: ease 0.30s;
}

.social a:hover{
    transform: scale(1.2);
}

.end{
    text-align: center;
    padding-top: 60px;
    padding-bottom: 12px;
}

.end p{
    font-size: 15px;
    color: white;
    letter-spacing: 1px;
    font-weight: 300;
}

/* About Us */
.about {
    padding: 70px 10%;
    background: #f9faff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-text {
    flex: 2 1 500px;
}

.about-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1e3d7b;
}

.about-text h1 span {
    color: #1e90ff;
}

.about-text h3 {
    margin-top: 20px;
    font-size: 22px;
    color: #1e3d7b;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

/* Responsive */
@media(max-width: 900px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: 1 1 100%;
    }

    .about-text h1 {
        font-size: 32px;
    }

    .about-text h3 {
        font-size: 20px;
    }
}


/* Registration Form */
.booking-details {
    padding: 70px 10%;
    background: #f0f8ff;
}

.booking-details .package-title h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 5px;
}

.booking-details .sub-heading {
    text-align: center;
    color: #555;
    font-size: 18px;
    margin-bottom: 50px;
}

.booking-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.booking-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    border-top: 5px solid #1e90ff;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.booking-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e3d7b;
}

.booking-card ul {
    list-style: none;
    padding-left: 0;
}

.booking-card ul li {
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px dashed #d0dcef;
}

.booking-card ul li:last-child {
    border-bottom: none;
}

/* Download button */
.booking-btn {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.booking-btn a {
    display: inline-block;
    background: #1e90ff;
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.booking-btn a i {
    margin-right: 10px;
    font-size: 20px;
}

.booking-btn a:hover {
    background: #0074cc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Mobile responsiveness */
@media(max-width: 600px){
    .booking-details {
        padding: 50px 5%;
    }
}
