/* =========================================================
   DAVYN TOURS & TRAVEL
   MAIN STYLESHEET
========================================================= */


/* ================= VARIABLES ================= */

:root {

    --primary: #0b6b57;

    --primary-dark: #075342;

    --accent: #d9a441;

    --dark: #17211d;

    --text: #4d5954;

    --light-text: #7c8782;

    --light: #f5f7f5;

    --white: #ffffff;

    --border: #e4e9e5;

    --container: 1180px;

}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "DM Sans", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.7;

    overflow-x: hidden;

}


img {

    width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
select,
textarea {

    font-family: inherit;

}


/* ================= CONTAINER ================= */

.container {

    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;

}


/* ================= HEADER ================= */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(10px);

    border-bottom: 1px solid var(--border);

}


.nav-container {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* LOGO */

.logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo span {

    font-family: "Playfair Display", serif;

    font-size: 25px;

    font-weight: 700;

    color: var(--primary);

}


.logo small {

    font-size: 9px;

    letter-spacing: 2px;

    color: var(--dark);

    margin-top: 5px;

}


/* NAV */

.nav {

    display: flex;

    align-items: center;

    gap: 30px;

}


.nav a {

    font-size: 14px;

    font-weight: 600;

    color: var(--dark);

    transition: .25s;

}


.nav a:hover,
.nav a.active {

    color: var(--primary);

}


.nav-dropdown {

    position: relative;

}


.nav-dropdown-toggle {

    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    padding: 0;
    background: none;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

}


.nav-dropdown-toggle span {

    color: var(--primary);
    font-size: 18px;
    line-height: 1;
    transform: translateY(-2px);

}


.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.active {

    color: var(--primary);

}


.nav-dropdown-menu {

    position: absolute;
    top: calc(100% + 18px);
    left: -18px;
    display: none;
    min-width: 245px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    box-shadow: 0 14px 30px rgba(23,33,29,.12);

}


.nav-dropdown.open .nav-dropdown-menu {

    display: grid;

}


.nav-dropdown-menu a {

    display: block;
    padding: 9px 11px;
    font-size: 13px;
    font-weight: 600;

}


.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {

    background: var(--light);
    color: var(--primary);

}


.nav-dropdown-menu .nav-dropdown-heading {

    margin-bottom: 4px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-weight: 700;

}


.nav .nav-button {

    background: var(--primary);

    color: white;

    padding: 11px 19px;

    border-radius: 6px;

}


.nav .nav-button:hover {

    background: var(--primary-dark);

    color: white;

}


.language-picker {

    display: flex;
    align-items: center;

}


.language-picker select {

    appearance: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    color: var(--dark);
    padding: 9px 28px 9px 11px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%), linear-gradient(135deg, var(--primary) 50%, transparent 50%);
    background-position: calc(100% - 12px) 14px, calc(100% - 8px) 14px;
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;

}


.language-picker select:focus {

    outline: 2px solid rgba(11,107,87,.25);
    outline-offset: 2px;

}


.sr-only {

    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;

}


/* MOBILE MENU */

.menu-toggle {

    display: none;

    background: none;

    border: none;

    font-size: 27px;

    cursor: pointer;

}


.icon {

    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

}


.inline-icon {

    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-left: 4px;

}


/* ================= BUTTONS ================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 14px 24px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

    border: none;

    cursor: pointer;

    transition: .25s;

}


.btn-primary {

    background: var(--primary);

    color: white;

}


.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}


.btn-outline {

    color: white;

    border: 1px solid rgba(255,255,255,.7);

}


.btn-outline:hover {

    background: white;

    color: var(--primary);

}


.btn-light {

    background: white;

    color: var(--primary);

}


.btn-light:hover {

    transform: translateY(-2px);

}


/* ================= HERO ================= */

.hero {

    min-height: 690px;

    position: relative;

    display: flex;

    align-items: center;

    background-image: url("images/hero.jpg");

    background-size: cover;

    background-position: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.70),
            rgba(0,0,0,.30),
            rgba(0,0,0,.15)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    color: white;

    max-width: 760px;

    padding: 100px 0;

    margin-inline: auto;

    text-align: center;

}


.eyebrow {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--accent);

    margin-bottom: 12px;

}


.hero h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 7vw, 78px);

    line-height: 1.05;

    margin-bottom: 25px;

}


.hero h1 span {

    color: #f0c96a;

}


.hero-text {

    font-size: 18px;

    max-width: 650px;

    color: rgba(255,255,255,.9);

    margin-bottom: 35px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    justify-content: center;

}


/* ================= SECTIONS ================= */

section {

    padding: 90px 0;

}


.section-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;

}


.section-heading h2,
.section-top h2 {

    font-family: "Playfair Display", serif;

    color: var(--dark);

    font-size: clamp(32px, 5vw, 48px);

    line-height: 1.2;

    margin-bottom: 15px;

}


.section-heading p:not(.eyebrow) {

    color: var(--light-text);

}


/* ================= FLIGHT ================= */

.flight-section {

    background: var(--light);

}


.flight-section > .container {

    max-width: 1080px;

}


.flight-widget {

    width: min(100%, 1020px);

    margin: 0 auto;

    padding: 26px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow: 0 15px 40px rgba(0,0,0,.06);

    overflow: hidden;

}


.flight-widget iframe {

    display: block;

    margin-inline: auto;

    width: 320px;

    height: 640px;

    border: 0;

}


.flight-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

    padding: 30px;

    box-shadow: 0 15px 40px rgba(0,0,0,.06);

}


.trip-type {

    display: flex;

    gap: 25px;

    margin-bottom: 25px;

}


.trip-type label {

    font-weight: 600;

    font-size: 14px;

    cursor: pointer;

}


.trip-type input {

    margin-right: 6px;

}


.flight-grid {

    display: grid;

    grid-template-columns:
        1fr
        40px
        1fr
        1fr
        1fr
        1fr;

    gap: 12px;

    align-items: end;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.form-group label {

    font-size: 12px;

    font-weight: 700;

    color: var(--dark);

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid var(--border);

    border-radius: 6px;

    padding: 13px 14px;

    font-size: 14px;

    color: var(--dark);

    background: white;

    outline: none;

    transition: .2s;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 3px rgba(11,107,87,.08);

}


.swap-button {

    width: 40px;

    height: 44px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: white;

    color: var(--primary);

    font-size: 20px;

    cursor: pointer;

}


.flight-submit {

    margin-top: 22px;

}


.flight-help {

    margin-top: 20px;

    font-size: 13px;

    color: var(--light-text);

}


.flight-help a {

    color: var(--primary);

    font-weight: 700;

}


/* ================= SERVICES ================= */

.services-section {

    background: white;

}


.services-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}


.service-card {

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 30px;

    background: white;

    transition: .25s;

}


.service-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0,0,0,.07);

}


.service-icon {

    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(11,107,87,.09);
    color: var(--primary);

}


.service-icon .icon {

    width: 27px;
    height: 27px;

}


.service-card h3 {

    color: var(--dark);

    margin-bottom: 12px;

}


.service-card p {

    font-size: 14px;

    color: var(--light-text);

    margin-bottom: 20px;

}


.service-card a {

    font-size: 13px;

    font-weight: 700;

    color: var(--primary);

}


/* ================= TOURS ================= */

.tours-section {

    background: var(--light);

}


.section-top {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 40px;

}


.text-link {

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

}


.tour-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


.tour-card {

    background: white;

    border-radius: 10px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition: .25s;

}


.tour-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

}


.tour-image {

    height: 245px;

    position: relative;

    overflow: hidden;

}


.tour-image img {

    height: 100%;

    object-fit: cover;

    transition: .4s;

}


.tour-card:hover .tour-image img {

    transform: scale(1.05);

}


.tour-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    background: var(--primary);

    color: white;

    padding: 6px 11px;

    border-radius: 4px;

    font-size: 11px;

    font-weight: 700;

}


.tour-content {

    padding: 24px;

}


.tour-meta {

    display: flex;

    justify-content: space-between;

    color: var(--light-text);

    font-size: 12px;

    margin-bottom: 10px;

}


.tour-content h3 {

    color: var(--dark);

    font-family: "Playfair Display", serif;

    font-size: 22px;

    margin-bottom: 10px;

}


.tour-content p {

    font-size: 14px;

    color: var(--light-text);

    margin-bottom: 20px;

}


.tour-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 15px;

    border-top: 1px solid var(--border);

}


.tour-bottom strong {

    color: var(--dark);

    font-size: 14px;

}


.tour-bottom a {

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

}


/* ================= WHY ================= */

.why-section {

    background: white;

}


.why-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


.why-image {

    height: 550px;

}


.why-image img {

    height: 100%;

    object-fit: cover;

    border-radius: 10px;

}


.why-content h2 {

    font-family: "Playfair Display", serif;

    font-size: 48px;

    color: var(--dark);

    line-height: 1.2;

    margin-bottom: 20px;

}


.why-content h2 span {

    color: var(--primary);

}


.why-content > p {

    color: var(--light-text);

    margin-bottom: 30px;

}


.why-list {

    display: grid;

    gap: 20px;

}


.why-list strong {

    color: var(--dark);

}


.why-list p {

    font-size: 14px;

    color: var(--light-text);

    margin-top: 4px;

}


/* ================= DESTINATIONS ================= */

.destinations-section {

    background: var(--light);

}


.destination-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}


.destination-card {

    height: 300px;

    position: relative;

    overflow: hidden;

    border-radius: 10px;

}


.destination-card img {

    height: 100%;

    object-fit: cover;

    transition: .4s;

}


.destination-card:hover img {

    transform: scale(1.06);

}


.destination-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );

}


.destination-card div {

    position: absolute;

    z-index: 2;

    bottom: 20px;

    left: 20px;

    color: white;

}


.destination-card h3 {

    font-family: "Playfair Display", serif;

    font-size: 27px;

}


.destination-card p {

    font-size: 13px;

}


/* ================= CONTACT ================= */

.contact-section {

    background: white;

}


.contact-grid {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 70px;

    align-items: start;

}


.contact-info {

    padding-top: 20px;

}


.contact-info h2 {

    font-family: "Playfair Display", serif;

    color: var(--dark);

    font-size: 48px;

    line-height: 1.15;

    margin-bottom: 20px;

}


.contact-info > p {

    color: var(--light-text);

    max-width: 500px;

}


.contact-details {

    margin-top: 35px;

    display: grid;

    gap: 22px;

}


.contact-item {

    display: flex;

    gap: 15px;

    align-items: flex-start;

}


.contact-item > span {

    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 10px;
    background: rgba(11,107,87,.09);
    color: var(--primary);

}


.contact-item > span .icon {

    width: 20px;
    height: 20px;

}


.contact-item strong {

    display: block;

    color: var(--dark);

    font-size: 14px;

}


.contact-item p,
.contact-item a {

    font-size: 14px;

    color: var(--light-text);

}


.contact-item a {

    color: var(--primary);

    font-weight: 600;

}


/* QUOTE CARD */

.quote-card {

    background: var(--light);

    padding: 35px;

    border-radius: 12px;

    border: 1px solid var(--border);

}


.quote-card h3 {

    font-family: "Playfair Display", serif;

    font-size: 30px;

    color: var(--dark);

    margin-bottom: 5px;

}


.quote-card > p {

    color: var(--light-text);

    font-size: 14px;

    margin-bottom: 25px;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-bottom: 16px;

}


.quote-card textarea {

    resize: vertical;

    min-height: 120px;

}


.quote-submit {

    width: 100%;

    margin-top: 20px;

}


.form-note {

    text-align: center;

    font-size: 11px !important;

    color: var(--light-text);

    margin-top: 12px;

}


/* ================= CUSTOM SECTION ================= */

.custom-section {

    background:
        linear-gradient(
            120deg,
            var(--primary-dark),
            var(--primary)
        );

    color: white;

    text-align: center;

}


.custom-content {

    max-width: 750px;

}


.custom-content h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 5vw, 48px);

    line-height: 1.2;

    margin-bottom: 15px;

}


.custom-content p:not(.eyebrow) {

    color: rgba(255,255,255,.85);

    margin-bottom: 30px;

}


/* ================= PAGE HERO ================= */

.page-hero {

    padding: 110px 0;

    background:
        linear-gradient(
            120deg,
            var(--primary-dark),
            var(--primary)
        );

    color: white;

}


.page-hero h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 65px);

    line-height: 1.1;

    margin-bottom: 15px;

}


.page-hero p:not(.eyebrow) {

    color: rgba(255,255,255,.85);

    max-width: 600px;

}


/* ================= TOUR FILTER ================= */

.all-tours-section {

    background: var(--light);

}


.tour-filters {
    margin-bottom: 40px;
}

.hotels-section {
    padding: 90px 0;
    background: var(--light);
}
.hotel-search-embed {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}
.hotel-search-embed iframe {
    width: min(500px, 100%);
    height: 500px;
    border: 0;
    background: var(--white);
}

.partner-hotels-section {
    background: var(--light);
}
.partner-hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.partner-hotel-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 15px 17px;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    transition: .25s;
}
.partner-hotel-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}
.hotel-card {
    min-height: 265px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--accent);
    box-shadow: 0 8px 22px rgba(23,33,29,.05);
}
.hotel-card-content {
    width: 100%;
}
.hotel-number {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.hotel-card h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.2;
}
.hotel-card p {
    min-height: 50px;
    margin-bottom: 18px;
    color: var(--light-text);
    font-size: 14px;
}
.hotel-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 13px;
}


.search-box {

    max-width: 450px;

    margin-bottom: 20px;

}


.search-box input {

    width: 100%;

    padding: 15px 18px;

    border: 1px solid var(--border);

    border-radius: 6px;

    outline: none;

    font-size: 14px;

}


.filter-buttons {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}


.filter-btn {

    padding: 10px 18px;

    border: 1px solid var(--border);

    border-radius: 5px;

    background: white;

    color: var(--dark);

    cursor: pointer;

    font-weight: 600;

    font-size: 13px;

}


.filter-btn.active,
.filter-btn:hover {

    background: var(--primary);

    color: white;

    border-color: var(--primary);

}


.no-results {

    display: none;

    text-align: center;

    padding: 60px;

}


/* ================= ABOUT ================= */

.about-section {

    background: white;

}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


.about-image img {

    height: 500px;

    object-fit: cover;

    border-radius: 10px;

}


.about-content h2 {

    font-family: "Playfair Display", serif;

    color: var(--dark);

    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;

}


.about-content p {

    margin-bottom: 18px;

    color: var(--light-text);

}


.team-section {

    background: var(--light);

}


.about-services {

    background: var(--light);

}


.mission-section {

    background: white;

}


.mission-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}


.mission-card {

    padding: 40px;

    border: 1px solid var(--border);

    border-radius: 10px;

}


.mission-card span {

    color: var(--accent);

    font-weight: 700;

}


.mission-card h2 {

    font-family: "Playfair Display", serif;

    color: var(--dark);

    font-size: 32px;

    margin: 10px 0;

}


.mission-card p {

    color: var(--light-text);

}


.values-section {

    background: var(--light);

}


.values-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}


.value-card {

    background: white;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 10px;

}


.value-number {

    color: var(--accent);

    font-weight: 700;

    margin-bottom: 20px;

}


.value-card h3 {

    color: var(--dark);

    margin-bottom: 10px;

}


.value-card p {

    font-size: 14px;

    color: var(--light-text);

}


/* ================= FOOTER ================= */

.footer {

    background: #101714;

    color: white;

    padding-top: 70px;

}


.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 60px;

}


.footer-logo {

    font-family: "Playfair Display", serif;

    font-size: 30px;

    color: white;

}


.footer-grid > div > p {

    color: #9ba59f;

    font-size: 14px;

    margin-top: 15px;

}


.footer h4 {

    margin-bottom: 18px;

}


.footer-grid a:not(.footer-logo) {

    display: block;

    color: #9ba59f;

    font-size: 14px;

    margin-bottom: 8px;

}


.footer-grid a:hover {

    color: white;

}


.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.1);

    padding: 20px 0;

}


.footer-bottom p {

    color: #7e8983;

    font-size: 12px;

}


/* ================= WHATSAPP ================= */

.whatsapp-button {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: #25d366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    z-index: 999;

    box-shadow: 0 7px 20px rgba(0,0,0,.2);

}


/* ================= HEADER SCROLLED ================= */

.header {
    transition: box-shadow .3s ease, background .3s ease;
}

.header-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}


/* ================= PRELOADER ================= */

.preloading {
    overflow: hidden;
}


.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .45s ease, visibility .45s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.preloader-inner {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-letter {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 700;
    color: white;
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11,107,87,.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(11,107,87,0);
    }
}


/* ================= STATS ================= */

.stats-section {
    background: var(--primary);
    padding: 50px 0;
    margin-top: -1px;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}


.stat-item strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 48px);
    color: white;
    line-height: 1.2;
    margin-bottom: 5px;
}


.stat-item span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
}


/* ================= TESTIMONIALS ================= */

.testimonials-section {
    background: white;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.testimonial-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 35px;
    background: white;
    transition: .25s;
    display: flex;
    flex-direction: column;
}


.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}


.testimonial-stars {
    color: var(--accent);
    font-size: 17px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}


.testimonial-card > p {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 22px;
}


.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 18px;
}


.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
}


.testimonial-author span {
    font-size: 12.5px;
    color: var(--light-text);
}


/* ================= BACK TO TOP ================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 90px;
    z-index: 998;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 19px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}


/* ================= TOAST NOTIFICATIONS ================= */

.toast-container {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    pointer-events: none;
    width: min(calc(100% - 40px), 420px);
}


.toast {
    background: var(--dark);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    opacity: 0;
    transform: translateY(-12px);
    transition: .35s ease;
    text-align: center;
    width: 100%;
}


.toast.show {
    opacity: 1;
    transform: translateY(0);
}


/* ================= SCROLL REVEAL ================= */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {


    .menu-toggle {

        display: block;

        color: var(--dark);

    }


    .nav {

        display: none;

        position: absolute;

        top: 78px;

        left: 0;

        right: 0;

        background: white;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        border-bottom: 1px solid var(--border);

        max-height: calc(100vh - 78px);

        overflow-y: auto;

    }


    .nav.open {

        display: flex;

    }


    .nav a {

        padding: 12px;

    }


    .nav-dropdown {

        width: 100%;

    }


    .nav-dropdown-toggle {

        width: 100%;
        justify-content: space-between;
        padding: 12px;

    }


    .nav-dropdown-menu {

        position: static;
        min-width: 0;
        margin: 0 12px 8px;
        box-shadow: none;

    }


    .language-picker {

        padding: 12px;

    }


    .language-picker select {

        width: 100%;

    }


    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }
    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .tour-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .destination-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .testimonials-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .flight-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .swap-button {

        display: none;

    }


    .why-grid,
    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;

    }


    .why-image {

        height: 400px;

    }


    .values-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 700px) {


    section {

        padding: 58px 0;

    }


    .hero {

        min-height: 560px;
        background-position: 62% center;

    }


    .hero-content {

        padding: 70px 0;

    }


    .hero h1 {

        font-size: clamp(42px, 12vw, 58px);
        margin-bottom: 18px;

    }


    .hero-text {

        font-size: 15px;
        margin-bottom: 26px;

    }


    .flight-grid {

        grid-template-columns: 1fr;

    }


    .services-grid,
    .tour-grid,
    .hotel-grid,
    .partner-hotels-grid,
    .destination-grid,
    .values-grid,
    .mission-grid,
    .stats-grid,
    .testimonials-grid {

        grid-template-columns: 1fr;

    }


    .section-top {

        display: block;

    }


    .section-top .text-link {

        display: inline-block;

        margin-top: 10px;

    }


    .section-heading {

        margin-bottom: 34px;

    }


    .section-heading h2,
    .section-top h2,
    .custom-content h2 {

        font-size: clamp(30px, 9vw, 40px);

    }


    .tour-image {

        height: 230px;

    }


    .why-content h2,
    .about-content h2,
    .contact-info h2 {

        font-size: clamp(32px, 9vw, 38px);

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .quote-card {

        padding: 22px 18px;

    }


    .flight-widget {

        width: min(320px, 100%);
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;

    }


    .quote-card h3 {

        font-size: 27px;

    }


    .hotel-search-embed {

        margin-top: 28px;

    }


    .partner-hotel-link {

        min-height: 54px;
        padding: 13px 14px;
        font-size: 13px;

    }


    .whatsapp-button {

        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;

    }


    .back-to-top {

        right: 16px;
        bottom: 76px;
        width: 42px;
        height: 42px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .page-hero {

        padding: 80px 0;

    }


}