/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

/* ==================== VARIABLES CSS ==================== */
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /* Using HSL for easier manipulation */
    --hue: 190;
    --first-color: hsl(var(--hue), 64%, 22%);
    /* Deep Teal */
    --first-color-second: hsl(var(--hue), 64%, 22%);
    --first-color-alt: hsl(var(--hue), 64%, 18%);
    --title-color: hsl(var(--hue), 24%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --text-color-light: hsl(var(--hue), 8%, 65%);
    --input-color: hsl(var(--hue), 24%, 97%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --container-color: #FFF;
    --scroll-bar-color: hsl(var(--hue), 12%, 90%);
    --scroll-thumb-color: hsl(var(--hue), 12%, 75%);
    --accent-color: hsl(35, 100%, 50%);
    /* Gold/Orange accent */

    /*========== Font and Typography ==========*/
    --body-font: 'Outfit', sans-serif;
    --title-font: 'Playfair Display', serif;
    --big-font-size: 2.5rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font Weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== Margins Bottom ==========*/
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;

    /*========== Z Index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 5rem;
        --h1-font-size: 2.5rem;
        --h2-font-size: 1.7rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 0 var(--header-height) 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    font-family: var(--title-font);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== UTILITY UTILS ==================== */
.section {
    padding: 4.5rem 0 2rem;
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: var(--mb-1);
}

.section__subtitle {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    text-align: center;
    margin-bottom: var(--mb-2-5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 968px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

/* ==================== CUSTOM CURSOR RESERVED SPACE (Removed) ==================== */

/* ==================== HEADER ==================== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    /* Glass effect added via JS on scroll */
    transition: .4s;
}

/* Glassmorphism class added by JS */
.scroll-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    color: var(--title-color);
    font-weight: 700;
    font-family: var(--title-font);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nav__logo-text {
    display: none;
}

.nav__logo-accent {
    color: var(--accent-color);
}

.nav__toggle {
    color: var(--title-color);
    font-size: 1.1rem;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .nav__menu {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        background-color: var(--body-color);
        padding: 2rem 1.5rem 4rem;
        box-shadow: 0 -1px 4px rgba(0, 0, 0, .15);
        border-radius: 1.5rem 1.5rem 0 0;
        transition: .3s;
    }
}

.nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-font-size);
    color: var(--title-color);
    font-weight: var(--font-medium);
}

.nav__link:hover {
    color: var(--first-color);
}

.nav__cta {
    background-color: var(--first-color);
    color: #FFF;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: 0.3s;
}

.nav__cta:hover {
    background-color: var(--first-color-alt);
    color: #FFF;
}

.nav__close {
    position: absolute;
    right: 1.3rem;
    bottom: .5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--first-color);
}

/* Show Menu */
.show-menu {
    bottom: 0;
}

/* Active Link */
.active-link {
    color: var(--first-color);
}

/* ==================== HOME ==================== */
.home {
    position: relative;
    padding-top: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Placeholder - later replace with image/video */
.home__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, #e0f7fa 0%, #ffffff 100%);
    z-index: -2;
}

/* Decorative circles */
.home__bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--first-color);
    filter: blur(150px);
    border-radius: 50%;
    top: -10%;
    right: -10%;
    opacity: 0.1;
    z-index: -1;
}

.home__container {
    gap: 1rem;
}

.home__title {
    font-size: var(--big-font-size);
    line-height: 1.1;
    margin-bottom: var(--mb-1);
}

.home__description {
    font-size: var(--normal-font-size);
    color: var(--text-color);
    margin-bottom: var(--mb-2);
    max-width: 400px;
}

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

/* Buttons */
.button {
    display: inline-block;
    background-color: var(--first-color);
    color: #FFF;
    padding: 1rem 1.75rem;
    border-radius: .5rem;
    font-weight: var(--font-medium);
    transition: .3s;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-2px);
}

.button__icon {
    font-size: 1.25rem;
    margin-left: var(--mb-0-5);
    transition: .3s;
}

.button--flex {
    display: inline-flex;
    align-items: center;
}

.button--link {
    background: transparent;
    color: var(--first-color);
    box-shadow: none;
}

.button--link:hover {
    background: hsla(var(--hue), 64%, 22%, 0.1);
    color: var(--first-color);
}

/* Social */
.home__social {
    position: absolute;
    top: 50%;
    right: -1rem;
    /* Hidden on mobile initially, adjusted in media queries */
    transform: translateY(-50%);
    display: grid;
    row-gap: 1rem;
}

.home__social-link {
    font-size: 1.25rem;
    color: var(--first-color);
    transition: .3s;
}

.home__social-link:hover {
    color: var(--accent-color);
    transform: translateX(-0.25rem);
}

.home__scroll {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.home__scroll-link {
    color: var(--first-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--small-font-size);
}

.home__scroll-icon {
    font-size: 1.5rem;
    margin-bottom: var(--mb-0-25);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* ==================== SERVICES ==================== */
.services__container {
    padding-top: 1rem;
}

.services__card {
    background-color: var(--container-color);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: .3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.services__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.services__icon {
    font-size: 3rem;
    color: var(--first-color);
    margin-bottom: var(--mb-1);
}

.services__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
}

.services__button {
    color: var(--first-color);
    font-size: var(--small-font-size);
    display: inline-flex;
    align-items: center;
    margin-top: var(--mb-1);
    transition: .3s;
}

.services__button:hover {
    transform: translateX(5px);
}

/* ==================== VISION ==================== */
.vision__container {
    gap: 3rem;
}

.vision__img-placeholder {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    border-radius: 1rem;
}

.vision__title-left {
    text-align: left;
}

.vision__description {
    margin-bottom: var(--mb-1-5);
    line-height: 1.6;
}

.vision__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: var(--mb-2);
}

.vision__stat-number {
    font-size: var(--h2-font-size);
    color: var(--first-color);
}

.vision__stat-title {
    font-size: var(--smaller-font-size);
    text-transform: uppercase;
    color: var(--text-color-light);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--first-color-second);
    color: #fff;
    padding-bottom: 2rem;
}

.footer__title {
    color: #fff;
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1-5);
}

.footer__description {
    margin-bottom: var(--mb-1-5);
    color: rgba(255, 255, 255, 0.7);
}

.footer__link {
    display: block;
    margin-bottom: var(--mb-0-75);
    color: rgba(255, 255, 255, 0.7);
    transition: .3s;
}

.footer__link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer__social-link {
    font-size: 1.25rem;
    color: #fff;
    margin-right: var(--mb-1);
    transition: .3s;
}

.footer__social-link:hover {
    color: var(--accent-color);
}

.footer__copy {
    text-align: center;
    font-size: var(--smaller-font-size);
    margin-top: 4.5rem;
    color: rgba(255, 255, 255, 0.4);
}


/* ==================== DESTINATIONS ==================== */
.destinations__container {
    padding-top: 1rem;
}

.destinations__card {
    background-color: var(--container-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: .4s;
}

.destinations__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.destinations__img-box {
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.destinations__img-placeholder {
    width: 100%;
    height: 100%;
    transition: .4s;
}

.destinations__card:hover .destinations__img-placeholder {
    transform: scale(1.1);
}

.destinations__data {
    padding: 1.5rem;
}

.destinations__title {
    font-size: var(--h3-font-size);
    margin-bottom: .25rem;
}

.destinations__subtitle {
    display: block;
    color: var(--text-color-light);
    font-size: var(--smaller-font-size);
    margin-bottom: 1rem;
}

.destinations__price {
    display: inline-block;
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
}

/* ==================== UPDATES ==================== */
.updates__container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.updates__content {
    background-color: var(--body-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: .3s;
}

.updates__content:hover {
    border-color: var(--first-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.updates__icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: var(--mb-1);
}

.updates__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
}

.updates__description {
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1);
}

.updates__date {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

/* ==================== CONTACT ==================== */
.contact__container {
    gap: 3rem;
}

.contact__content {
    align-self: center;
}

.contact__description {
    margin-bottom: var(--mb-2);
}

.contact__info {
    display: grid;
    gap: 2rem;
}

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

.contact__card-icon {
    font-size: 2rem;
    color: var(--first-color);
}

.contact__card-title {
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-0-25);
}

.contact__card-data {
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.contact__form {
    background-color: var(--container-color);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact__form-div {
    margin-bottom: var(--mb-1-5);
}

.contact__form-tag {
    display: block;
    margin-bottom: var(--mb-0-5);
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.contact__form-input {
    width: 100%;
    padding: 1rem;
    border-radius: .5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
    font-family: var(--body-font);
    font-size: var(--small-font-size);
    transition: .3s;
}

.contact__form-input:focus {
    border-color: var(--first-color);
}

.contact__form-area {
    height: 10rem;
}

.contact__form-area textarea {
    resize: none;
}

/* ==================== MEDIA QUERIES ==================== */
@media screen and (min-width: 576px) {
    .home__container {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }

    .home__bg::after {
        left: 0;
        right: 0;
        margin: auto;
    }

    .home__scroll {
        bottom: 3rem;
    }

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

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

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__list {
        display: flex;
        padding-top: 0;
    }

    .nav__item {
        margin-left: 3rem;
    }

    .home__container {
        text-align: initial;
        grid-template-columns: 1fr .5fr;
        align-items: center;
    }

    .home__social {
        right: -2rem;
    }

    .vision__container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .services__container {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==================== RESPONSIVE OVERRIDES ==================== */
@media screen and (max-width: 768px) {
    .service-detailed {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    /* Ensure image is always on top for every service item on mobile */
    .service-detailed .service-icon-large {
        order: -1 !important;
    }

    .service-text {
        text-align: center;
    }
}