/* =========================================================
   AMELIYA HOLIDAYS
   Main Stylesheet
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

:root {
    --ink: #10251f;
    --muted: #66756f;

    --brand: #0b6b57;
    --brand2: #0f8a70;
    --gold: #e8b45b;

    --cream: #f7f4ec;
    --line: #e3e9e5;

    --shadow: 0 20px 60px rgba(16, 37, 31, 0.12);

    --r: 24px;
    --max: 1180px;
}


/* =========================================================
   02. RESET & GLOBAL STYLES
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

body.is-loading {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin: auto;
}


/* =========================================================
   03. PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;

    background: #0b332b;

    display: grid;
    place-items: center;

    transition: 0.6s;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    color: #fff;
}

.loader-logo {
    width: 58px;
    height: 58px;

    margin: auto auto 15px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        var(--brand2),
        var(--gold)
    );

    display: grid;
    place-items: center;

    font-size: 1.4rem;
    font-weight: 900;

    animation: pulse 1.5s infinite;
}

.loader-line {
    width: 120px;
    height: 3px;

    background: #ffffff25;

    border-radius: 9px;
    overflow: hidden;

    margin: 12px auto;
}

.loader-line::after {
    content: "";

    display: block;

    width: 45%;
    height: 100%;

    background: var(--gold);

    animation: load 1s infinite;
}


/* Loader Animations */

@keyframes pulse {

    50% {
        transform: scale(1.08);
    }

}

@keyframes load {

    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(260%);
    }

}


/* =========================================================
   04. HEADER & NAVIGATION
========================================================= */

.site-header {
    position: fixed;

    z-index: 1000;

    inset: 0 0 auto;

    background: #ffffffe8;

    backdrop-filter: blur(16px);

    border-bottom: 1px solid #e3e9e5;
}

.nav {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;

    gap: 11px;

    font-weight: 900;
    font-size: 1.18rem;
}

.logo-mark {
    width: 40px;
    height: 40px;

    border-radius: 13px;

    background: linear-gradient(
        135deg,
        var(--brand),
        var(--brand2)
    );

    color: #fff;

    display: grid;
    place-items: center;

    box-shadow: 0 8px 20px #0b6b5735;
}

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

    gap: 27px;

    font-size: 0.92rem;
    font-weight: 700;
}

.nav-links a {
    color: #32443e;

    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links .active {
    color: var(--brand);
}

.nav-cta {
    background: var(--brand);

    color: #fff !important;

    padding: 11px 18px;

    border-radius: 99px;
}

.menu-btn {
    display: none;

    border: 0;
    background: none;

    font-size: 1.5rem;

    cursor: pointer;
}


/* =========================================================
   05. HERO SECTION
========================================================= */

.hero {
    min-height: 790px;

    padding-top: 78px;

    display: grid;
    align-items: center;

    position: relative;

    overflow: hidden;

    background: #0e332b;
}





.hero-content {
    position: relative;

    z-index: 1;

    color: #fff;

    padding: 110px 0 90px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 6.3rem);

    line-height: 0.97;

    letter-spacing: -0.065em;

    max-width: 850px;

    margin: 14px 0 25px;
}

.hero p {
    max-width: 680px;

    font-size: 1.12rem;

    color: #ffffffd9;

    margin-bottom: 30px;
}


/* Hero Animation */

@keyframes glow {

    50% {
        transform:
            translateY(-20px)
            scale(1.05);
    }

}
/* =========================================================
   HERO IMAGE SLIDER
========================================================= */

.hero-slider {
    position: relative;

    min-height: 790px;

    padding-top: 78px;

    display: grid;

    align-items: center;

    overflow: hidden;

    background: #08261f;
}


/* =========================================================
   SLIDES CONTAINER
========================================================= */

.hero-slides {
    position: absolute;

    inset: 0;

    overflow: hidden;

    z-index: 0;
}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.hero-slide {
    position: absolute;

    inset: 0;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1.08);

    transition:
        opacity 1.2s ease,
        transform 7s ease;

    pointer-events: none;
}


/* Active slide */

.hero-slide.active {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(4, 30, 24, .92) 0%,
            rgba(4, 30, 24, .70) 35%,
            rgba(4, 30, 24, .35) 70%,
            rgba(4, 30, 24, .18) 100%
        );
}


/* Bottom cinematic gradient */

.hero-overlay::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 220px;

    background:
        linear-gradient(
            to top,
            rgba(4, 25, 20, .65),
            transparent
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-slider .hero-content {
    position: relative;

    z-index: 5;

    color: #fff;

    padding: 110px 0 100px;
}


/* =========================================================
   HERO CONTROLS
========================================================= */

.hero-controls {
    position: absolute;

    right: max(30px, calc((100vw - var(--max)) / 2));

    bottom: 50px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 14px;
}


/* =========================================================
   ARROWS
========================================================= */

.hero-arrow {
    width: 48px;

    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.35);

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(12px);

    color: #fff;

    display: grid;

    place-items: center;

    cursor: pointer;

    transition: .3s ease;
}

.hero-arrow:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--ink);

    transform: translateY(-2px);
}


/* =========================================================
   COUNTER
========================================================= */

.hero-counter {
    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.85);

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: .08em;
}


.hero-counter-line {
    width: 38px;

    height: 1px;

    background: rgba(255,255,255,.45);
}


/* =========================================================
   PROGRESS BAR
========================================================= */

.hero-progress {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    z-index: 10;

    background: rgba(255,255,255,.12);

    overflow: hidden;
}


.hero-progress span {
    display: block;

    width: 0;

    height: 100%;

    background: var(--gold);

    transition: width .1s linear;
}


/* =========================================================
   SLIDE TRANSITION
========================================================= */

.hero-slide.active {
    animation: heroZoom 7s ease forwards;
}


@keyframes heroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .hero-slider {
        min-height: 720px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4,30,24,.88),
                rgba(4,30,24,.55)
            );
    }


    .hero-controls {
        right: 20px;

        bottom: 35px;
    }

}


@media (max-width: 600px) {

    .hero-slider {
        min-height: 720px;
    }


    .hero-slider .hero-content {
        padding: 90px 0 110px;
    }


    .hero-controls {
        left: 16px;

        right: auto;

        bottom: 28px;
    }


    .hero-arrow {
        width: 42px;

        height: 42px;
    }


    .hero-counter-line {
        width: 25px;
    }


    .hero-slide {
        background-position: center;
    }

}

/* =========================================================
   06. HERO ELEMENTS
========================================================= */

.eyebrow,
.kicker {
    font-size: 0.76rem;

    text-transform: uppercase;

    letter-spacing: 0.16em;

    font-weight: 900;
}

.eyebrow {
    color: var(--gold);
}

.kicker {
    color: var(--brand);

    margin-bottom: 10px;
}

.hero-badge,
.destination-pill {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border-radius: 99px;

    background: #ffffff12;

    border: 1px solid #ffffff25;

    color: #fff;

    font-size: 0.78rem;

    font-weight: 800;
}

.destination-strip {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-top: 24px;
}

.trust-row {
    display: flex;

    gap: 16px;

    flex-wrap: wrap;

    margin-top: 24px;
}

.trust-item {
    font-size: 0.78rem;

    color: #ffffffc9;
}


/* =========================================================
   07. BUTTONS
========================================================= */

.actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 14px 20px;

    border-radius: 99px;

    border: 1px solid transparent;

    font-weight: 900;

    cursor: pointer;

    transition: 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);

    color: #1d2b25;
}

.btn-light {
    background: #ffffff12;

    border-color: #ffffff55;

    color: #fff;

    backdrop-filter: blur(10px);
}

.btn-light:hover {
    background: #fff;

    color: var(--ink);
}


/* =========================================================
   08. SECTIONS
========================================================= */

.section {
    padding: 105px 0;
}

.section-soft {
    background: var(--cream);
}

.section-head {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 42px;
}

.section-head p {
    max-width: 520px;

    color: var(--muted);
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.7rem);

    line-height: 1.05;

    letter-spacing: -0.055em;
}


/* =========================================================
   09. GRID SYSTEM
========================================================= */

.grid {
    display: grid;

    gap: 22px;
}

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

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


/* =========================================================
   10. CARDS
========================================================= */

.card {
    border: 1px solid var(--line);

    border-radius: var(--r);

    overflow: hidden;

    background: #fff;

    box-shadow: 0 10px 35px #10251f0d;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.card-image {
    height: 245px;

    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.28rem;

    letter-spacing: -0.025em;

    margin-bottom: 7px;
}

.card-body p {
    color: var(--muted);

    font-size: 0.93rem;
}


/* =========================================================
   11. TAGS
========================================================= */

.tag {
    display: inline-block;

    margin-top: 15px;

    padding: 6px 10px;

    border-radius: 99px;

    background: #eaf5f1;

    color: var(--brand);

    font-size: 0.74rem;

    font-weight: 900;
}


/* =========================================================
   12. PACKAGE CARDS
========================================================= */

.package-route {
    color: var(--brand);

    font-size: 0.78rem;

    font-weight: 900;

    margin: 9px 0;
}

.package-card .card-body {
    display: flex;

    flex-direction: column;

    height: 100%;
}

.package-card .btn {
    margin-top: auto;
}


/* =========================================================
   13. FEATURE SECTION
========================================================= */

.feature {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 70px;

    align-items: center;
}

.feature-image {
    height: 590px;

    border-radius: 34px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   14. CHECK LIST
========================================================= */

.checks {
    display: grid;

    gap: 14px;

    margin: 28px 0;
}

.check {
    display: flex;

    gap: 12px;

    align-items: flex-start;
}

.check i {
    width: 25px;
    height: 25px;

    flex: none;

    border-radius: 50%;

    background: #dff1eb;

    color: var(--brand);

    display: grid;

    place-items: center;

    font-style: normal;

    font-size: 0.8rem;

    font-weight: 900;
}

.check span {
    color: var(--muted);
}


/* =========================================================
   15. CTA SECTION
========================================================= */

.cta {
    border-radius: 34px;

    padding: 65px;

    background:
        linear-gradient(
            120deg,
            #0a5546,
            #0f8a70
        );

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.cta p {
    max-width: 620px;

    color: #ffffffc7;

    margin-top: 12px;
}


/* =========================================================
   16. PAGE HERO
========================================================= */

.page-hero {
    padding: 170px 0 85px;

    background:
        linear-gradient(
            120deg,
            #0b3e34,
            #0f8a70
        );

    color: #fff;
}

.page-hero h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);

    line-height: 1;

    letter-spacing: -0.06em;
}

.page-hero p {
    max-width: 680px;

    color: #ffffffc7;

    margin-top: 18px;
}


/* =========================================================
   17. FORM
========================================================= */

.form-card {
    background: #fff;

    border: 1px solid var(--line);

    border-radius: 28px;

    padding: 32px;

    box-shadow: var(--shadow);
}

.field-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.field {
    margin-bottom: 17px;
}

.field label {
    display: block;

    font-weight: 800;

    font-size: 0.84rem;

    margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
    width: 100%;

    border: 1px solid #dbe3df;

    border-radius: 13px;

    padding: 13px 14px;

    font: inherit;

    outline: 0;

    background: #fbfcfb;
}

.field textarea {
    min-height: 140px;

    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand);

    box-shadow:
        0 0 0 4px #0b6b5712;
}
/* =================================
   TESTIMONIALS
================================= */

.testimonials-section {
    background: #f7f4ec;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-quote {
    position: absolute;
    top: 12px;
    right: 25px;
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(11, 107, 87, .07);
    pointer-events: none;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.75;
    min-height: 145px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e5f2ed;
    color: var(--brand);
    font-weight: 900;
}

.testimonial-author strong {
    display: block;
    font-size: .92rem;
}

.testimonial-author span {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    margin-top: 2px;
}


@media (max-width: 900px) {

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

}


@media (max-width: 600px) {

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

    .testimonial-card {
        padding: 26px;
    }

}

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

.vision-mission-card {
    height: 100%;
}

.vision-mission-card .card-body {
    padding: 36px;
}

.vision-mission-card h3 {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 18px;
}

.vision-mission-card p + p {
    margin-top: 14px;
}

@media (max-width: 900px) {

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

}

/* =========================================================
   BOOKING / CONTACT LAYOUT
========================================================= */

.booking-layout {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 50px;

    align-items: start;
}


/* =========================================================
   BOOKING INFO
========================================================= */

.booking-info {
    position: sticky;

    top: 110px;
}


/* =========================================================
   BOOKING FORM
========================================================= */

#whatsapp-form .btn {
    width: 100%;
}


/* =========================================================
   BOOKING RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .booking-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .booking-info {
        position: static;
    }

}


@media (max-width: 600px) {

    .booking-layout {
        gap: 30px;
    }

}

/* =========================================================
   18. STATS
========================================================= */

.stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

    margin-top: 45px;
}

.stat {
    padding: 22px;

    border: 1px solid var(--line);

    border-radius: 18px;

    background: #fff;
}

.stat strong {
    display: block;

    font-size: 2rem;
}

.stat span {
    font-size: 0.84rem;

    color: var(--muted);
}

/* =========================================================
   FAQ
========================================================= */

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 0 24px;
    transition: .3s ease;
}

.faq-list details:hover {
    box-shadow: 0 12px 35px rgba(16,37,31,.08);
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 22px 35px 22px 0;
    font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 17px;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--brand);
}

.faq-list details[open] summary::after {
    content: '−';
}

.faq-list details p {
    color: var(--muted);
    padding: 0 0 22px;
    max-width: 800px;
}

/* =========================================================
   19. FOOTER
========================================================= */

.site-footer {
    background: #0c211c;

    color: #fff;

    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col a,
.footer-col p {
    display: block;

    color: #ffffff9e;

    font-size: 0.9rem;

    margin: 8px 0;
}

.footer-bottom {
    border-top: 1px solid #ffffff18;

    margin-top: 45px;

    padding-top: 20px;

    color: #ffffff70;

    font-size: 0.8rem;

    display: flex;

    justify-content: space-between;
}


/* =========================================================
   20. FLOATING WHATSAPP
========================================================= */

.float-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #20b96b;

    color: #fff;

    font-size: 1.45rem;

    box-shadow: 0 14px 35px #084f3438;

    animation: wa 2.3s infinite;
}

.float-whatsapp:hover {
    transform: translateY(-4px);
}

@keyframes wa {

    0%,
    70%,
    100% {
        box-shadow:
            0 14px 35px #084f3438,
            0 0 0 0 #20b96b59;
    }

    85% {
        box-shadow:
            0 14px 35px #084f3438,
            0 0 0 13px #20b96b00;
    }

}


/* =========================================================
   21. SCROLL REVEAL ANIMATIONS
========================================================= */

[data-reveal],
.reveal-left,
.reveal-right {
    opacity: 0;

    transform: translateY(20px);

    transition:
        0.8s cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

.reveal-left {
    transform: translateX(-35px);
}

.reveal-right {
    transform: translateX(35px);
}

.revealed {
    opacity: 1 !important;

    transform: none !important;
}


/* =========================================================
   22. TABLET RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    /* Navigation */

    .nav-links {
        display: none;

        position: absolute;

        top: 78px;

        left: 0;
        right: 0;

        background: #fff;

        padding: 18px 20px;

        flex-direction: column;

        align-items: stretch;

        border-bottom: 1px solid var(--line);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        text-align: center;
    }

    .menu-btn {
        display: block;
    }


    /* Grids */

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }


    /* Feature */

    .feature {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .feature-image {
        height: 420px;
    }


    /* Stats */

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


    /* Footer */

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


    /* CTA */

    .cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   23. MOBILE RESPONSIVE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }


    /* Hero */

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding: 90px 0;
    }

    .hero h1 {
        font-size: 3.2rem;
    }


    /* Sections */

    .section {
        padding: 75px 0;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 15px;
    }


    /* Grids */

    .grid-3,
    .grid-4,
    .field-row {
        grid-template-columns: 1fr;
    }


    /* Feature */

    .feature-image {
        height: 350px;
    }


    /* Footer */

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

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;

        margin-top: 6px;
    }


    /* WhatsApp */

    .float-whatsapp {
        right: 16px;

        bottom: 16px;

        width: 52px;

        height: 52px;
    }

}