@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

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

body {
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}


a {
    text-decoration: none;
}

ul {
    list-style: none;
}

h1 {
    text-transform: uppercase;
}

h4 {
    font-size: 3vmin;
    margin: 1.25rem auto;
    color: hsl(233, 94%, 26%);
}

.subtitle {
    color: hsl(0, 0%, 49%);
    padding: 0 2.5rem;
}

nav {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    padding: 1.25rem;
    color: hsl(0, 0%, 100%);
    background: #0a0f2d;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 1.875rem;
}

.nav-links li a {
    color: hsl(0, 0%, 100%);
    font-size: 1.125rem;
}

header {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3),rgba(0,0,0,0.3) ),  url('./img/header-bg.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.header-content {
    margin-bottom: 20rem;
    color: hsl(0, 0%, 100%);
    text-align: center;
}

.header-content .heading {
    font-size: 4vmin;
}

.header-content .subheading {
    font-size: 7vmin;
    margin-block: 2rem;
}

.line {
    width: 9.375rem;
    height: 0.25rem;
    background-color: hsl(233, 94%, 26%);
    margin: 0.625rem auto;
    border-radius: 0.313rem;
}

.btn {
    padding: 0.5rem 0.928rem;
    background-color: hsl(233, 94%, 26%);
    border-radius: 1.875rem;
    color: hsl(0, 0%, 100%);
}

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.2rem;
    height: 2.2rem;
    cursor: pointer;
    background: transparent;
    border: none;
    gap: 5px;
    z-index: 1000;
    padding: 0;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.35s ease;
    transform-origin: center;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.trips {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.title {
    font-size: 4vmin;
    color: hsl(240, 27%, 39%);
    margin-right: 2rem;
}

.card{
    position: relative;
    width: 300px;
    height: 200px;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: 0 0 13px 0px rgba(0,0,0,.3);
    transition: .5s;
    overflow: hidden;
    margin: .85rem;
}

.card:hover{
    height: 397px;
}

.card img{
    width: 100%;
    border-radius: 16px;
    transition: .5s;
}

.card:hover img{
    border-radius: 16px 16px 0 0;
}

.card .card-body{
    padding: .5rem .85rem 1rem;
    height: 0;
}

.card .card-body h6{
    margin: .5rem 0;
    font-size: .85rem;
    color: hsl(240, 27%, 39%);
    letter-spacing: 3px;
}

.card .card-body p{
    text-align: justify;
    font-size: .9rem;
    line-height: 25px;
}

.card .card-body div{
    text-align: right;
    width: 100%;
}

.card .card-body div a{
    position: relative;
    text-decoration: none;
    color: hsl(230, 98%, 66%);
    padding: .5rem;
    text-align: center;
    z-index: 999;
    font-size: .85rem;
}

.card .card-body div a::before{
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    background: hsl(230, 98%, 66%);
    border-radius: 300px;
    left: -13px;
    top: 3px;
    z-index: -1;
    transition: .3s;
}

.card .card-body div a:hover{
    color: #fff;
}

.card .card-body div a:hover::before{
    width: 100%;
    height: 88%;
    left: 0;
}

.explore {
    width: 100%;
    height: 65vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3),rgba(0,0,0,0.3) ),  url('./img/explore-bg.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.explore-content {
    padding: 3.125rem;
    color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.explore-content h1 {
    font-size: 7vmin;
    text-align: center;
}

.explore-content .line {
    margin-bottom: 3.125rem;
    margin: 0;
    margin-block: 1rem;
}

.explore-content p {
    max-width: 31rem;
    color: rgb(221, 221, 221);
    line-height: 1.5;
}

.explore-content .btn {
    margin-top: 1.875rem;
}

/* ===== Upcoming Destinations Section ===== */
.tours {
    padding: 5rem 2rem;
    background: #f8f9fc;
}

.tours-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.tours-header h1 {
    font-size: 2.4rem;
    color: hsl(240, 27%, 39%);
    letter-spacing: 1px;
}

.tours-header .line {
    margin: 1rem auto;
}

.tours-header p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-top: 1.2rem;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dest-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.dest-card-img {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.dest-badge {
    display: inline-block;
    background: hsl(233, 94%, 26%);
    color: #fff;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.dest-overlay h3 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dest-overlay p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.dest-btn {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.5rem 1.4rem;
    border: 2px solid rgba(255,255,255,0.9);
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.dest-card:hover .dest-btn {
    opacity: 1;
    transform: translateY(0);
}

.dest-btn:hover {
    background: #fff;
    color: hsl(233, 94%, 26%);
    border-color: #fff;
}

/* ===== Footer ===== */
footer {
    background: #111827;
    color: #d1d5db;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
}

.footer-brand h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #d1d5db;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: hsl(233, 94%, 26%);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: hsl(233, 94%, 26%);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form input::placeholder {
    color: #6b7280;
}

.newsletter-form button {
    padding: 0.75rem 1.2rem;
    background: hsl(233, 94%, 26%);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: hsl(233, 94%, 32%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.footer-bottom a {
    color: #9ca3af;
    transition: color 0.25s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== Section Tag ===== */
.section-tag {
    display: inline-block;
    color: hsl(233, 94%, 26%);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

/* ===== About Section ===== */
.about {
    padding: 6rem 2rem;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.about-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-experience {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: hsl(233, 94%, 26%);
    color: #fff;
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 15, 45, 0.4);
}

.about-experience span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience p {
    font-size: 0.8rem;
    margin: 0.3rem 0 0;
    opacity: 0.9;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    color: hsl(240, 27%, 39%);
    margin-bottom: 0.5rem;
}

.about-content .line {
    margin: 0.8rem 0 1.5rem;
}

.about-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 1.3rem;
    color: hsl(233, 94%, 26%);
    background: rgba(10, 15, 80, 0.08);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature h5 {
    font-size: 0.95rem;
    color: #1f2937;
    margin-bottom: 0.15rem;
}

.feature span {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ===== Stats Section ===== */
.stats {
    background: linear-gradient(135deg, hsl(233, 94%, 26%), hsl(233, 94%, 16%));
    padding: 4rem 2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Planning Section ===== */
.planning {
    padding: 6rem 2rem;
    background: #f8f9fc;
}

.planning-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.planning-header h2 {
    font-size: 2.2rem;
    color: hsl(240, 27%, 39%);
}

.planning-header .line {
    margin: 1rem auto;
}

.planning-header p {
    color: #6b7280;
    font-size: 1rem;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 15, 80, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: hsl(233, 94%, 26%);
    transition: all 0.3s ease;
}

.plan-card:hover .plan-icon {
    background: hsl(233, 94%, 26%);
    color: #fff;
    transform: scale(1.1);
}

.plan-card h4 {
    color: #1f2937;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
}

.plan-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 6rem 2rem;
    background: #fff;
}

.testi-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testi-header h2 {
    font-size: 2.2rem;
    color: hsl(240, 27%, 39%);
}

.testi-header .line {
    margin: 1rem auto;
}

.testi-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-card {
    background: #f8f9fc;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.testi-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testi-card > p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid hsl(233, 94%, 26%);
}

.testi-author h5 {
    font-size: 0.95rem;
    color: #1f2937;
    margin-bottom: 0.15rem;
}

.testi-author span {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* ===== Nav Active State ===== */
.nav-links li a.nav-active {
    color: hsl(233, 94%, 50%);
    font-weight: 700;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate {
    opacity: 0;
}

.animate.animated {
    animation: fadeInUp 0.7s ease forwards;
}

.animate-left.animated {
    animation: fadeInLeft 0.7s ease forwards;
}

.animate-right.animated {
    animation: fadeInRight 0.7s ease forwards;
}

.animate-scale.animated {
    animation: scaleIn 0.6s ease forwards;
}

@media only screen and (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .about-container {
        flex-direction: column;
        gap: 4rem;
    }

    .about-img-wrapper {
        max-width: 500px;
        width: 100%;
    }

    .about-experience {
        right: 0;
        bottom: -20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .planning-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 850px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.1rem 1.5rem;
        z-index: 999;
        background: #0a0f2d;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    }

    .menu-btn {
        display: flex;
    }

    .logo {
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(10, 15, 50, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        gap: 0.8rem;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
    }

    .nav-links.mobile-menu {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.mobile-menu li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.mobile-menu li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.mobile-menu li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.mobile-menu li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.mobile-menu li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.mobile-menu li:nth-child(6) { transition-delay: 0.35s; }

    .nav-links li a {
        font-size: 1.4rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .nav-links li a.btn {
        display: inline-block;
        margin-top: 0.8rem;
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }

    .tours {
        padding: 3rem 1.5rem;
    }

    .tours-header h1 {
        font-size: 1.8rem;
    }

    .dest-card-img {
        height: 300px;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-experience {
        padding: 1rem 1.4rem;
    }

    .about-experience span {
        font-size: 1.5rem;
    }

    .stats {
        padding: 3rem 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .planning {
        padding: 4rem 1.5rem;
    }

    .testimonials {
        padding: 4rem 1.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .title {
        margin: 0;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .dest-card-img {
        height: 280px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
    }

    .footer-bottom {
        padding: 1.2rem 1rem;
    }

    .tours-header h1 {
        font-size: 1.5rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .planning-grid {
        grid-template-columns: 1fr;
    }

    .testi-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.3rem;
    }

    .planning-header h2,
    .testi-header h2 {
        font-size: 1.5rem;
    }
}

