/*===============================================
 Start Import Font Section
 ===============================================*/
/* marcellus-sc-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Marcellus SC';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/marcellus-sc/marcellus-sc-v14-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-300 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/nunito-sans/nunito-sans-v19-latin-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-sans/nunito-sans-v19-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-italic - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/nunito-sans/nunito-sans-v19-latin-italic.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/nunito-sans/nunito-sans-v19-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/nunito-sans/nunito-sans-v19-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-sans/nunito-sans-v19-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*=========================================
  End Import Font s section
  ========================================*/
/*=========================================
  start  Commom css
  ========================================*/
* {
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    box-sizing: border-box;
}

:root {
    --color-primary: #273d7f;
    --color-primary-dark: #1d2f66;
    --color-primary-light: #3a5599;
    --color-secondary: #6bcef5;
    --color-secondary-dark: #4bb8e8;
    --color-secondary-light: #9edff9;
    --color-accent: #f2b705;
    --color-accent-light: #ffd166;
    --color-accent-dark: #d99e04;
    --color-white: #ffffff;
    --color-off-white: #f8fafc;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-700: #374151;
    --color-gray-900: #1f2937;

    --gradient-main: linear-gradient(135deg, #273d7f, #6bcef5);
    --gradient-accent: linear-gradient(135deg, #273d7f, #6bcef5, #f2b705);
    --gradient-hover: linear-gradient(135deg, #9edff9 0%, #6bcef5 50%, #4bb8e8 100%);

    --shadow-sm: 0 2px 6px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, .12);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: "Marcellus SC", serif;
    --font-body: "Nunito Sans", sans-serif;
    /* card colour token — overridden on hover */
    --clr-btn: var(--color-primary);
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--second-color);
    color: var(--white-color);
}

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

iframe {
    width: 100%;
    border: none;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

select:focus,
select:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    outline: 0;
}

.accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    outline: 0;
}

textarea {
    height: 220px;
    padding-top: 20px;
}

textarea:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: var(--font-heading);
}

h1 {
    font-size: 50px;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    font-weight: 600;
}

h3 {
    font-weight: 600;
    font-size: 20px;
}

h4 {
    font-size: 18px;
    font-weight: 500;
}

h5 {
    font-size: 16px;
    font-weight: 400;
}

p {
    line-height: 2;
    font-weight: 400;
    color: var(--para-color);
    letter-spacing: 0.5px;
    margin: 0;
}

p.two-line {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

p.three-line {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    height: 85px;
}

.padding-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padtobo-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padtop-100 {
    padding-top: 100px;
}

.padbo-100 {
    padding-bottom: 100px;
}

.padtobo-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.padtop-70 {
    padding-top: 70px;
}

.padtop-60 {
    padding-top: 60px;
}

.padbo-70 {
    padding-bottom: 70px;
}

.padbo-60 {
    padding-bottom: 60px;
}

.padtobo-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padtobo-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padtobo-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padtop-50 {
    padding-top: 50px;
}

.padbo-50 {
    padding-bottom: 50px;
}

.padbo-30 {
    padding-bottom: 30px;
}

.padrl-50 {
    padding-left: 50px;
    padding-right: 50px;
}

.padtobo-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padtop-40 {
    padding-top: 40px;
}

.padbo-40 {
    padding-bottom: 40px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mr-30 {
    margin-right: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-30 {
    margin-left: 30px;
}

.mt-25 {
    margin-top: 25px;
}

.mr-25 {
    margin-right: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.ml-25 {
    margin-left: 25px;
}

.mt-20 {
    margin-top: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-20 {
    margin-left: 20px;
}

.mt-15 {
    margin-top: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mb-10 {
    margin-bottom: 10px;
}

body {
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: var(--black-color);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="subject"]:focus,
textarea:focus,
.form-select:focus {
    outline: none !important;
    border: 1px solid var(--main-color);
    -webkit-transform: translate3d(0, 0, 5px);
    transform: translate3d(0, 0, 5px);
    font-size: 16px;
    color: var(--main-color);
    -webkit-box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.1);
    box-shadow: 0 4px 30px 0 rgb(0 0 0 / 0.1);
}

.form-check-input:focus {
    border: none;
    outline: 0;
    box-shadow: none;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="password"],
input[type="subject"],
textarea,
.form-select {
    background: var(--white-color);
    border: 1px solid rgb(0 0 0 / 0.1);
    outline: 0;
    width: 100%;
    padding: 1rem;
    resize: none;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="tel"],
input[type="date"],
input[type="search"],
input[type="password"],
input[type="subject"],
.form-select {
    height: 40px;
}

textarea {
    height: 200px;
    padding-top: 20px;
}

.text-msg {
    margin-bottom: 15px !important;
}

textarea:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

::-webkit-scrollbar {
    background: #fff0;
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--second-color);
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(0 0 0 / 0.3);
}

::-webkit-scrollbar-button {
    background-color: var(--second-color);
    height: 15px;
    display: none;
}

.input-box {
    position: relative;
    margin-bottom: 10px;
}

.input-box label {
    position: absolute;
    top: 0.75rem;
    z-index: 20;
    left: 20px;
    font-size: 12px !important;
}

.input-box label::before {
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    background: #fff0;
    position: absolute;
    z-index: -1;
}

.input-box input:focus {
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid var(--main-color);
}

.input-box select {
    padding: 5px 15px 0;
    height: 45px;
    min-width: 100%;
}

.input-box select+label {
    position: absolute;
    left: 0;
    top: -0.5rem;
    background-color: var(--white-color);
}

.input-box input[type="date"]:focus+label,
.input-box input[type="date"]:valid+label,
.input-box input[type="tel"]:valid+label,
.input-box input[type="number"]:focus+label,
.input-box input:not(:placeholder-shown)+label,
.input-box input[type="email"]:focus+label,
.input-box input[type="text"]:focus+label,
.input-box input[type="text"]:not(:placeholder-shown)+label,
.input-box textarea:focus+label,
.input-box textarea:not(:placeholder-shown)+label {
    left: 0;
    top: -1.5rem;
    font-size: 14px;
    color: var(--white-color);
    padding: 3px 5px;
    background-color: var(--main-color);
    border-radius: 2px;
}

.swiper-wrapper {
    padding-bottom: 50px;
    ;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    border: none;
    outline: 0;
    color: var(--main-color);
}

ul ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.section-title {
    margin-bottom: 0;
    position: relative;
    color: var(--second-color);
    font-size: 25px;
    font-weight: 700;
    line-height: 29px;
}

.section-title-para {
    max-height: calc(1.4em * 5);
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    transition: max-height 0.3s ease-in-out;
}

.section-title-para.show {
    max-height: 100%;
    text-overflow: unset;
}

.section-title p {
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.showMore-btn {
    transition: 0.3s all ease-in-out;
    display: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 2px 2px 20px 17px var(--white-color);
    text-decoration: underline;
    padding: 0;
    color: var(--main-color);
    cursor: pointer;
    border-radius: 12px;
    letter-spacing: 1px;
    background-color: transparent;
    position: relative;
}

/* From Uiverse.io by Creatlydev */
.btn-effect {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--clr);
    color: #fff;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: var(--gold);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.btn-effect:hover {
    background-color: var(--navy);
    color: var(--gold)
}

.btn-effect:hover .button__icon-wrapper {
    color: var(--navy);
}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.btn-effect:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.btn-effect:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}



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



::selection {
    background-color: hsl(220 90% 56%);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: hsl(220 20% 70%);
    border-radius: 999px;
}



/* â”€â”€ show more â”€â”€ */
.show-more {
    position: relative;
}

.show-more-content {
    position: relative;
    width: 100%;
    line-height: 1.6;
    max-height: calc(1.6 * 6em);
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.show-more.expanded .show-more-content {
    max-height: 1000px;
}

.show-more-content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: linear-gradient(to top, var(--color-off-white), rgba(248, 250, 252, 0));
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.show-more.expanded .show-more-content::after {
    opacity: 0;
}

.show-more-divider {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.show-more-divider::before,
.show-more-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--color-gray-200);
}

.show-more-divider::before {
    right: 0;
}

.show-more-divider::after {
    left: 0;
}

.show-more-btn {
    position: relative;
    display: none;
    z-index: 2;
    background: var(--color-white);
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 24px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    font-family: var(--font-body);
    box-shadow: var(--shadow-sm);
}

.show-more.has-more .show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.show-more-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(39, 61, 127, .2);
}

.show-more-btn:active {
    transform: scale(.96);
}

.show-more-btn i {
    font-size: .7rem;
    transition: transform .3s;
}

.show-more.expanded .show-more-btn i {
    transform: rotate(180deg);
}

.show-more-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(39, 61, 127, .2);
}

.show-more-btn:active {
    transform: scale(.96);
}

.show-more-btn i {
    font-size: .7rem;
    transition: transform .3s;
}

.show-more.expanded .show-more-btn i {
    transform: rotate(180deg);
}

/* ============================================================
   3. SHARED UTILITIES
   ============================================================ */
.sub-title {
    display: inline-flex;
    align-items: center;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: var(--color-secondary-light);
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--color-primary);
    width: fit-content;
    gap: 8px
}


/* .section-center-head:hover .sub-title img::before {
  opacity: 1;
} */

.sub-title img {
    width: 12px;
    position: relative;
    box-shadow:
        0 0 2px #fff700,
        0 0 5px #ffcc00,
        0 0 3px #ff9900,
        0 0 6px rgba(255, 100, 0, 0.7);
    filter: drop-shadow(0 0 4px rgba(255, 200, 0, 0.9));
    border-radius: 50%;
}

.sub-title img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 249, 230, 0.9) 0%, transparent 70%);
    opacity: 1;
    transition: opacity .35s ease;
}

.section-center-head:hover .sub-title img {
    animation: shinning 2s infinite;
}

@keyframes shinning {

    0%,
    100% {
        box-shadow:
            0 0 2px #fff700,
            0 0 5px #ffcc00,
            0 0 3px #ff9900,
            0 0 6px rgba(255, 100, 0, 0.7);
        filter: drop-shadow(0 0 4px rgba(255, 200, 0, 0.9));
    }

    50% {
        box-shadow: none;
        filter: none;
    }
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    color: var(--color-primary);
    line-height: 1.2;
}

.section-subtext {
    color: var(--color-gray-500);
    font-size: .9rem;
    line-height: 1.7;
    max-width: 750px;
    margin-top: 10px !important;
}

.accent-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
    vertical-align: middle;
    margin: 0 2px;
}

/* ============================================================
   4. TOP BAR
   ============================================================ */
.top-bar {
    background: var(--color-off-white);
    padding: 7px 0;
    position: relative;
    overflow: visible;
    z-index: 900;
    border-bottom: 1px solid rgba(107 206 245 / 0.1);
}

.top-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(105deg, transparent, transparent 40px,
            rgba(107, 206, 245, .04) 40px, rgba(107, 206, 245, .04) 41px);
    pointer-events: none;
}

.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.top-contacts {
    display: none;
    align-items: center;
    gap: 0;
}

@media (min-width: 768px) {
    .top-contacts {
        display: flex;
    }
}

.top-contacts li {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    position: relative;
    font-size: .78rem;
    font-weight: 500;
}

.top-contacts li+li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, .18);
}

.top-contacts li i {
    color: var(--color-accent);
    font-size: .8rem;
}

.top-contacts li a {
    color: var(--color-primary);
    transition: color .2s;
}



.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.top-dropdown {
    position: relative;
}

.top-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(107, 206, 245, 0.1);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    font-size: .75rem;
    font-weight: 500;
    font-family: var(--font-heading);
    transition: background .2s, border-color .2s;
}

.top-dropdown-btn i {
    color: var(--color-accent);
    font-size: .72rem;
}

.top-dropdown-btn .chevron {
    font-size: .6rem;
    color: var(--color-primary);
    transition: transform .25s;
}

.top-dropdown:hover .top-dropdown-btn {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(107, 206, 245, .3);
}

.top-dropdown:hover .chevron {
    transform: rotate(180deg);
}

.top-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 130px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .25s, transform .25s, visibility .25s;
    z-index: 200;
}

.top-dropdown:hover .top-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: .78rem;
    font-weight: 500;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
    transition: background .2s, color .2s;
}

.top-dropdown-menu a:last-child {
    border-bottom: none;
}

.top-dropdown-menu a:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.top-dropdown-menu img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.top-socials {
    /* display: none; */
    align-items: center;
    order: -1;
    gap: 6px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, .15);
    margin-left: 4px;
}

@media (min-width: 640px) {
    .top-socials {
        display: flex;
        order: unset;
    }
}

@media (max-width: 640px) {
    .top-dropdown-menu {
        left: -30px
    }
}

.top-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgb(59 130 246 / 0.2);
    color: var(--color-primary);
    font-size: .72rem;
    transition: background .2s, border-color .2s, color .2s;
}

.top-socials li a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
}

/* ============================================================
   5. MAIN NAVBAR
   ============================================================ */
.navbar {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background .35s, box-shadow .35s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(39, 61, 127, .1);
    position: fixed;
    width: 100%;
    z-index: 2000;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    height: 72px;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 32px;
    flex-shrink: 0;
}

.nav-logo-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 500%;
    height: 100%;
    background: var(--color-primary);
    opacity: .06;
    pointer-events: none;
    border-radius: 0 999px 999px 0;
    display: none;
}

.logo-box img {
    width: 150px;

}

.nav-links {
    display: none;
    align-items: stretch;
    margin: 0 auto;
    gap: 0;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 18px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--color-gray-700);
    position: relative;
    transition: color .25s;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    width: calc(100% - 36px);
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--color-primary);
}

.nav-item:hover .nav-link::after {
    transform: scaleX(1);
}

.nav-link .chevron {
    font-size: .6rem;
    transition: transform .25s;
    color: var(--color-gray-400);
}

.nav-item:hover .nav-link .chevron {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0);
    min-width: 210px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    /* box-shadow: 0 16px 44px rgba(39, 61, 127, .14); */
    border: 1px solid var(--color-gray-200);
    /* border-top: 3px solid var(--color-primary); */
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s, transform .28s, visibility .28s;
    z-index: 300;
}

.dropdown-panel::before {
    /* content: ''; */
    position: absolute;
    top: -3px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-bottom-right-radius: 6px;
}

.nav-item:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: .83rem;
    font-weight: 500;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
    transition: background .2s, color .2s, padding-left .2s;
    position: relative;
}

.dropdown-panel a:last-child {
    border-bottom: none;
}

.dropdown-panel a::before {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    background: var(--color-accent);
    transition: transform .25s ease;
    border-radius: 50%;
    transform: translateY(-50%)scale(0);
    color: var(--color-white);
    text-align: center;
}

.dropdown-panel a:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
    padding-left: 22px;
}

.dropdown-panel a:hover::before {
    transform: translateY(-50%)scale(1);
}

.dropdown-panel a i {
    color: var(--color-secondary-dark);
    font-size: .8rem;
    width: 16px;
    text-align: center;
}

.nav-cta-wrap {
    display: none;
    align-items: center;
    padding-left: 20px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .nav-cta-wrap {
        display: flex;
    }
}

.nav-cta-wrap::before {
    content: '';
    display: block;
    width: 1px;
    height: 36px;
    background: var(--color-gray-200);
    margin-right: 20px;
}

.btn-book-now {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--color-accent);
    box-shadow: 0 8px 24px rgba(242, 183, 5, .4);
    color: var(--color-primary-dark);
    font-size: .85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: background .3s, transform .2s, box-shadow .3s;

}

.btn-book-now::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.77, 0, .18, 1);
    z-index: 0;
}

.btn-book-now:hover::before {
    transform: translateX(0);
}

.btn-book-now:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    background: var(--color-primary);
    box-shadow: 0 4px 16px rgba(39, 61, 127, .3);
}

.btn-book-now span,
.btn-book-now i {
    position: relative;
    z-index: 1;
}

.btn-book-now i {
    font-size: .8rem;
    transition: transform .3s;
}

.btn-book-now:hover i {
    transform: translate(3px, -3px);
}

/* hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    margin-left: auto;
    border-radius: var(--radius-sm);
    transition: background .2s;
    margin-top: 25px;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger:hover {
    background: var(--color-gray-100);
}

.ham-bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
    transition: transform .35s, opacity .25s, width .3s;
}

.ham-bar:nth-child(1) {
    width: 100%;
}

.ham-bar:nth-child(2) {
    width: 70%;
}

.ham-bar:nth-child(3) {
    width: 100%;
}

.hamburger.open .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100%;
}

.hamburger.open .ham-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100%;
}

/* mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(27, 38, 75, .6);
    backdrop-filter: blur(4px);
}

.mobile-menu.open {
    display: block;
}

.mobile-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(340px, 88vw);
    height: 100%;
    background: var(--color-white);
    box-shadow: -12px 0 40px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: slideIn .35s cubic-bezier(.77, 0, .18, 1) both;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.mobile-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    opacity: .06;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    pointer-events: none;
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--color-gray-200);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-700);
    font-size: 1rem;
    transition: background .2s, color .2s;
}

.mobile-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.mobile-nav-list {
    padding: 12px 0;
    flex: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--color-gray-100);
    display: block;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-gray-700);
    transition: color .2s, background .2s;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    background: var(--color-gray-100);
}

.mobile-nav-link i {
    font-size: .75rem;
    color: var(--color-gray-400);
}

.mobile-sub {
    display: none;
    background: var(--color-gray-100);
    border-top: 1px solid var(--color-gray-200);
}

.mobile-sub.open {
    display: block;
}

.mobile-sub a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px 11px 30px;
    font-size: .83rem;
    color: var(--color-gray-500);
    transition: color .2s;
}

.mobile-sub a i {
    color: var(--color-secondary-dark);
    font-size: .75rem;
}

.mobile-sub a:hover {
    color: var(--color-primary);
}

.mobile-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--color-gray-200);
}

.mobile-book-btn {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 14px;
    transition: background .25s;
}

.mobile-book-btn:hover {
    background: var(--color-primary-dark);
}

.mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--color-gray-500);
}

.mobile-contacts a i {
    color: var(--color-accent);
}

/* Split-row: link takes all space, arrow is a tap target */
.mobile-nav-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-nav-item--has-sub>.mobile-nav-row .mobile-nav-link {
    flex: 1;
    border-bottom: none;
    /* row handles the border */
}

.mobile-arrow {
    flex-shrink: 0;
    width: 52px;
    /* wide enough for easy tap */
    background: none;
    border: none;
    border-left: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    font-size: .75rem;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.mobile-arrow:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.mobile-arrow i {
    transition: transform .25s ease;
    pointer-events: none;
}

/* Remove old border from items with sub (row handles it) */
.mobile-nav-item--has-sub {
    border-bottom: none;
}

/* Sub list: keep display block when open */
.mobile-sub {
    display: none;
    background: var(--color-gray-100);
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-sub.open {
    display: block;
}

.mobile-sub li,
.mobile-sub a {
    display: block;
    /* ensure full-width tap area */
}

@media (max-width: 768px) {
    header {
        overflow-x: hidden;
    }
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
/* .hero-wrap {
    font-family: var(--font-heading);
    position: relative;
    width: 100%;
    min-height: 460px;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 80vh
}

.hero-content {
    height: 80vh
}


.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(39, 61, 127, .88) 0%, rgba(29, 47, 102, .82) 40%, rgba(107, 206, 245, .35) 100%);
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(39, 61, 127, .88) 0%, rgba(29, 47, 102, .82) 40%, rgba(107, 206, 245, .35) 100%);
    z-index: 1;
    background: radial-gradient(90% 80% at 50% 0%, #0d2245eb 0%, #1a3a6dc7 28%, #79bdd466 52%, #fcc14b14 72%, #0000 100%),
        radial-gradient(90% 80% at 50% 100%, #0d224580 0%, #0000 70%),
        radial-gradient(55% 65% at 0% 50%, #fcc14b38 0%, #0000 60%),
        radial-gradient(55% 65% at 100% 50%, #fcc14b38 0%, #0000 60%);
    background: radial-gradient(90% 80% at 50% 50%, #0d2245eb 0%, #1a3a6dc7 28%, #79bdd466 52%, #fcc14b14 72%, #0000 100%),
        radial-gradient(55% 65% at 0% 50%, #fcc14b38 0%, #0000 60%),
        radial-gradient(55% 65% at 100% 50%, #fcc14b38 0%, #0000 60%);
    z-index: 1;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(242, 183, 5, .13) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 2;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(107, 206, 245, .22) 0%, transparent 70%);
    top: -60px;
    right: 140px;
}

.orb-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(242, 183, 5, .14) 0%, transparent 70%);
    bottom: -20px;
    left: 35%;
}

.strips-side {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    gap: 20px;
    padding: 10px 8px;
    overflow: hidden;
    z-index: 3;
}

.strips-side.left {
    left: 0;
}

.strips-side.right {
    right: 0;
}

.strips-side::before,
.strips-side::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 5;
    pointer-events: none;
}

.strips-side.left::before,
.strips-side.right::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(29, 47, 102, .95), transparent);
}

.strips-side.left::after,
.strips-side.right::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(29, 47, 102, .95), transparent);
}

.strip-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

.strip-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col-up .strip-inner {
    animation: go-up 18s linear infinite;
}

.col-down .strip-inner {
    animation: go-down 22s linear infinite;
}

@keyframes go-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes go-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}


.photo-card {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid rgba(107, 206, 245, .2);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 44px 20px 90px;
    position: relative;
    z-index: 4;
    max-width: 700px;
    margin: 0 auto;
    height: 100%;
}

.hero-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(242, 183, 5, .1);
    border: 1px solid rgba(242, 183, 5, .35);
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 42px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 14px;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 380px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-hero-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}

.btn-hero-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    padding: 11px 24px;
    border-radius: 999px;
    border: 1.5px solid rgba(107, 206, 245, .5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s, background .2s, transform .15s;
}

.btn-hero-outline:hover {
    border-color: var(--color-secondary);
    background: rgba(107, 206, 245, .1);
    transform: translateY(-2px);
}

.ico-arrow-dark {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231d2f66' stroke-width='2.5'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.ico-arrow-light {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236bcef5' stroke-width='2.5'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wave-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
    pointer-events: none;
}

.waves {
    position: relative;
    width: 100%;
    height: 90px;
    min-height: 60px;
    max-height: 100px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width:640px) {

    .hero-content,
    .hero-wrap {
        height: 70vh;
    }

    .strips-side {
        display: none;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 7px 15px;
    }
} */
/* ════════════════════════════════════════
       HERO SECTION
    ════════════════════════════════════════ */
.hero-home {
    position: relative;
    height: 90vh;
    min-height: 560px;
    max-height: 860px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-gray-200);
    z-index: 1;
}

/* ── swiper fills the section ── */
.hero-swiper {
    width: 100%;
    height: 100%;
}

/* ════════════════════════════════════════
       HERO INFO — each slide
    ════════════════════════════════════════ */
.hero-info {
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ── single image per slide ── */
.hero-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-img-base {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform, opacity, filter;
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
    transition: transform 900ms cubic-bezier(.4, 0, .2, 1),
        opacity 900ms cubic-bezier(.4, 0, .2, 1),
        filter 900ms cubic-bezier(.4, 0, .2, 1);
}

/* JS-driven state classes */
.hero-img-base.img-exit-left {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(12px);
}

.hero-img-base.img-enter-right {
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(12px);
    transition: none;
    /* instant reset before animating in */
}

.hero-info::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background: radial-gradient(ellipse 90% 80% at 22% 50%,
            rgba(13, 34, 69, 0.92) 0%,
            rgba(26, 58, 109, 0.78) 28%,
            rgba(121, 189, 212, 0.40) 52%,
            rgba(252, 193, 75, 0.08) 72%,
            transparent 100%),
        radial-gradient(ellipse 55% 65% at 100% 0%,
            rgba(252, 193, 75, 0.22) 0%,
            transparent 60%),
        radial-gradient(ellipse 40% 50% at 0% 100%,
            rgba(13, 34, 69, 0.50) 0%,
            transparent 65%);
}

/* dot-grid texture */
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 4;
    pointer-events: none;
}

/* ── slide description ── */
.slide-description {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 6rem 4rem 5rem;
    max-width: 760px;
}

@media (max-width: 768px) {
    .slide-description {
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem 4rem;
        max-width: 100%;
    }
}

/* slide-in animation on active slide */
.swiper-slide-active .slide-description .slide-eyebrow {
    animation: slideUp .6s ease .1s both;
}

.swiper-slide-active .slide-description h1,
.swiper-slide-active .slide-description h2 {
    animation: slideUp .6s ease .25s both;
}

.swiper-slide-active .slide-description p {
    animation: slideUp .6s ease .4s both;
}

.swiper-slide-active .slide-description .hero-cta {
    animation: slideUp .6s ease .55s both;
}

.swiper-slide-active .slide-description .hero-badges {
    animation: slideUp .6s ease .68s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* eyebrow tag */
.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(242, 183, 5, .15);
    border: 1px solid rgba(242, 183, 5, .45);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.slide-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.5);
    }
}

/* heading */
.slide-description h1,
.slide-description h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.slide-description h2 span {
    color: var(--color-accent);
    position: relative;
}

.slide-description h2 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow .8s ease .9s forwards;
}

.swiper-slide-active .slide-description h2 span::after {
    animation: lineGrow .8s ease .9s forwards;
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

.slide-description p {
    font-size: clamp(.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, .78);
    line-height: 1.72;
    max-width: 480px;
    margin-bottom: 0;
}

/* CTA buttons */
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

@media (max-width: 768px) {
    .hero-cta {
        justify-content: center;
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: .88rem;
    font-family: var(--font-body);
    border-radius: 999px;
    border: none;
    box-shadow: 0 4px 18px rgba(242, 183, 5, .4);
    transition: background .25s, transform .2s, box-shadow .25s;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(242, 183, 5, .55);
}

.btn-hero-primary i {
    font-size: .78rem;
    transition: transform .3s;
}

.btn-hero-primary:hover i {
    transform: translate(3px, -3px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-white);
    font-weight: 600;
    font-size: .88rem;
    font-family: var(--font-body);
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, .45);
    transition: border-color .25s, background .25s, transform .2s;
    cursor: pointer;
}

.btn-hero-outline:hover {
    border-color: var(--color-secondary);
    background: rgba(107, 206, 245, .12);
    transform: translateY(-2px);
}

/* mini trust badges below CTA */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-badges {
        justify-content: center;
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

.hero-badge i {
    font-size: .65rem;
    color: var(--color-accent);
}

/* ════════════════════════════════════════
       SLIDE COUNTER (top-right)
    ════════════════════════════════════════ */
.slide-counter {
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
}

.slide-counter-current {
    color: var(--color-accent);
    font-size: .88rem;
}

/* ════════════════════════════════════════
       SWIPER PAGINATION (bottom)
    ════════════════════════════════════════ */
.hero-home .swiper-pagination {
    bottom: 28px !important;
    z-index: 20;
}

.hero-home .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .5);
    border-radius: 999px;
    opacity: 1;
    transition: width .3s, background .3s;
}

.hero-home .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--color-accent);
}

/* ════════════════════════════════════════
       SWIPER NAV ARROWS
    ════════════════════════════════════════ */
.swiper-button-next,
.swiper-button-prev {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    border: 1.5px solid rgba(255, 255, 255, .3);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.hero-home:hover .swiper-button-next,
.hero-home:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(39, 61, 127, .4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
    color: var(--color-white);
    font-weight: 700;
}

/* ════════════════════════════════════════
       PROGRESS BAR (bottom)
    ════════════════════════════════════════ */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, .1);
    z-index: 20;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    width: 0%;
    transition: width linear;
}

/* wave removed */

/* ════════════════════════════════════════
       SCROLL INDICATOR
    ════════════════════════════════════════ */
.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border-radius: 11px;
    border: 2px solid rgba(255, 255, 255, .5);
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-accent);
    animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

.scroll-label {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

/* ════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════ */
@media (max-width: 576px) {
    .hero-home {
        height: 60vh;
        min-height: 420px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .slide-counter {
        top: 16px;
        right: 16px;
    }
}

/* ============================================================
     start  PARTNERS MARQUEE
   ============================================================ */
.partners-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: var(--color-primary-light);
    overflow: hidden;
    max-width: 1600px;
    margin: 60px auto;
    border-radius: 40px;
}

.partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/shapes/partners.png);
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

/* .partners-section::after {
    content: ''
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), var(--color-accent), var(--color-secondary), transparent);
    z-index: 1;
} */

.section-label {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 30px;
}

.section-label span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(242, 183, 5, .1);
    border: 1px solid rgba(242, 183, 5, .3);
    padding: 5px 18px;
    border-radius: 999px;
    display: inline-block;
}

.marquee-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.marquee-wrap::before,
.marquee-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}

.marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4), transparent);
}

.marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.4), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: marquee 32s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-text {
    display: flex;
    gap: 16px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    display: flex;
    padding: 5px 10px;
    border-radius: 14px;
    border: 1px solid rgba(107, 206, 245, .18);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(4px);
    white-space: nowrap;
    transition: border-color .25s, background .25s, transform .2s;
    flex-shrink: 0;
}

.partner-card:hover {
    border-color: rgba(242, 183, 5, .5);
    background: rgba(242, 183, 5, .06);
    transform: translateY(-3px);
}

.card-img-bg {
    width: 250px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(107, 206, 245, .2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    transition: border-color .25s, transform .2s;
}

.card-img-bg img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* filter: brightness(.9) saturate(.8); */
    transition: filter .25s, transform .25s;
}

.partner-card:hover .card-img-bg {
    border-color: rgba(242, 183, 5, .5);
}

.partner-card:hover .card-img-bg img {
    filter: brightness(1.05) saturate(1.1);
    transform: scale(1.04);
}

.partner-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    letter-spacing: .3px;
}

.partner-sub {
    font-size: 10px;
    color: rgba(107, 206, 245, .7);
    font-weight: 400;
    display: block;
    margin-top: 1px;
}

/* ============================================================
     start  PARTNERS MARQUEE
   ============================================================ */
/*
/* ============================================================
     start  Categories
   ============================================================ */
/* .dest-section {
  background: var(--color-off-white);
  position: relative;
  overflow: hidden;
}

.dest-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(39, 61, 127, .055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}


.dest-swiper-clip {
  overflow: hidden;
}

.dest-swiper {
  width: 100%;
  padding: 16px 0 !important;
  overflow: visible !important;
}

.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1),
    box-shadow .5s cubic-bezier(.4, 0, .2, 1),
    opacity .5s ease;
 opacity: .5;
  transform: scale(.91);
}

.swiper-slide-active .dest-card {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow-lg);
}

.dest-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.swiper-slide-active .dest-card .dest-card-img {
  transform: scale(1.04);
}

.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 16px 14px;
  background: linear-gradient(to top, rgba(15, 20, 40, .92) 0%, transparent 100%);
  transition: opacity .3s ease;
}

.dest-card.overlay-active .card-label,
.swiper-slide-active .dest-card:hover .card-label {
  opacity: 0;
}

.card-label-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-label-pkg {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .73rem;
  color: var(--color-secondary-light);
  font-weight: 500;
}

.card-label-pkg svg {
  width: 11px;
  height: 11px;
  fill: var(--color-secondary-light);
}


.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(242, 183, 5, .92);
  color: var(--color-primary-dark);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(242, 183, 5, .4);
}


.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 45, .91);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 20px 18px;
  opacity: 0;
  transition: opacity .4s ease;
  gap: 8px;
}

.swiper-slide-active .dest-card:hover .card-hover-overlay,
.dest-card.overlay-active .card-hover-overlay {
  opacity: 1;
}

.swiper-slide:not(.swiper-slide-active) .dest-card:hover .card-hover-overlay {
  opacity: 0;
}


.hover-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--color-white);
  line-height: 1.2;
}

.hover-pkg {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .73rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.hover-pkg svg {
  width: 11px;
  height: 11px;
  fill: var(--color-secondary);
}

.hover-divider {
  width: 32px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.hover-desc {
  font-size: .79rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.hover-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.btn-book {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: .78rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .25s, transform .2s;
}

.btn-book:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-1px);
}

.btn-learn {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-white);
  font-size: .78rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .25s, background .25s, transform .2s;
}

.btn-learn:hover {
  border-color: var(--color-secondary);
  background: rgba(107, 206, 245, .12);
  transform: translateY(-1px);
}

.dest-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.dest-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--color-gray-200);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .2s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}

.dest-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(39, 61, 127, .25);
}

.dest-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s;
}

.dest-btn:hover svg {
  stroke: var(--color-white);
}

.dest-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-gray-300);
  transition: width .3s, background .3s;
  opacity: 1;
}

.dest-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--color-primary);
}

.slide-counter {
  position: absolute;
  bottom: 14px;
  right: 24px;
  z-index: 20;
  font-size: .7rem;
  font-weight: 600;
  color: var(--color-gray-400);
  letter-spacing: 1px;
}

.slide-counter span {
  color: var(--color-primary);
  font-weight: 700;
} */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* â”€â”€ single category card â”€â”€ */
.cat-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: transform .35s ease, box-shadow .35s ease;
    text-decoration: none;
    display: block;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* image wrapper */
.cat-img-wrap {
    position: relative;
    overflow: hidden;
    height: 190px;
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease, filter .45s ease;
}

.cat-card:hover .cat-img {
    transform: scale(1.07);
    filter: brightness(.88);
}

/* count badge */
.cat-count-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(242, 183, 5, .9);
    color: var(--color-primary-dark);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    z-index: 5;
}


/* card body */
.cat-body {
    padding: 28px 18px 18px;
}

.cat-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    line-height: 1.25;
    transition: color .25s;
}

.cat-card:hover .cat-name {
    color: var(--color-primary-dark);
}

.cat-tour-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--color-secondary-dark);
    margin-bottom: 10px;
}

.cat-tour-count i {
    font-size: .65rem;
}

.cat-desc {
    font-size: .14px;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 14px;
    max-height: calc(1.6 * 3em);
    overflow: hidden;
}

/* explore link */
.cat-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: gap .25s, color .25s;
}

.cat-explore i {
    font-size: .65rem;
    transition: transform .25s;
}

.cat-card:hover .cat-explore {
    color: var(--color-accent-dark);
    gap: 10px;
}

.cat-card:hover .cat-explore i {
    transform: translateX(3px);
}

/* bottom gradient line */
.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.cat-card:hover::after {
    transform: scaleX(1);
}

/* ============================================================
     End   Categories
   ============================================================ */
/* ============================================================
   8. ABOUT SECTION
   ============================================================ */
.about-section {
    background-color: var(--color-gray-900);
    background-image: radial-gradient(ellipse at 20% 50%, rgba(39, 61, 127, .55) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(107, 206, 245, .15) 0%, transparent 55%);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, .03) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, .03) 40px);
    pointer-events: none;
}

.about-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-inner-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width:1024px) {
    .about-inner-flex {
        flex-direction: row;
        align-items: center;
        gap: 32px;
        height: 100%;
    }
}

.about-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
    position: relative;
    margin-bottom: 8px;
}

.about-logo::before,
.about-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--color-accent);
}

.about-logo::before {
    right: calc(100% + 6px);
}

.about-logo::after {
    left: calc(100% + 6px);
}

.about-heading {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.about-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.about-divider span {
    display: block;
    height: 2px;
    background: var(--color-accent);
}

.about-divider span:first-child {
    width: 40px;
}

.about-divider span:last-child {
    width: 20px;
}

.about-divider .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.about-body {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--color-gray-300);
}

.about-col-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width:1024px) {
    .about-col-text {
        flex: 5;
    }
}

.arch-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 16px 0;
    height: 100%;
}

@media (min-width:1024px) {
    .arch-wrapper {
        flex: 2;
    }
}

.arch-frame {
    position: relative;
    width: min(280px, 88vw);
    height: 100%;
    border-radius: 999px 999px 0 0;
    overflow: hidden;
    border: 3px solid rgba(242, 183, 5, .35);
    box-shadow: 0 0 60px rgba(39, 61, 127, .6), inset 0 0 30px rgba(0, 0, 0, .3);
}

.arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 20;
}

.arch-ring-text {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(350px, 96vw);
    height: min(350px, 96vw);
    pointer-events: none;
    animation: spin 18s linear infinite;
}

@keyframes spin {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.arch-ring-text textPath {
    fill: var(--color-accent);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 3px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

@media (min-width:1024px) {
    .feature-cards {
        flex: 5;
    }
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}



.feature-title {
    font-family: var(--font-heading);
    font-size: 1.20rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 4px;
}

.feature-sub {
    font-size: .82rem;
    color: var(--color-gray-400);
}

/* ============================================================
   9. DESTINATIONS / TOUR CARDS
   ============================================================ */
.tours-section {
    background-color: var(--color-off-white);
    padding: 80px 0;
}

.section-center-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-center-head .section-heading {
    margin: 8px 0;
}

.section-center-head .section-subtext {
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width:640px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tour card */
.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 15px;
    color: var(--color-white);
    width: 100%;
    transition: background .45s ease, box-shadow .35s ease, transform .35s ease;
    box-shadow: var(--shadow-md);
}

.card:hover {
    --clr-btn: transparent;
    /* background: var(--gradient-hover); */
    box-shadow: 0 16px 40px rgba(107, 206, 245, .35);
    transform: translateY(-6px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 270px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border-bottom-right-radius: 0;
    overflow: hidden;
}

.box {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.featured-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(242, 183, 5, .4);
}

.featured-label .tour-arrow {
    font-size: .9rem;
}

.imgBox {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease, filter .45s ease;
}

.card:hover .imgBox img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.1);
}

.icon {
    position: absolute;
    bottom: -.375rem;
    right: -.375rem;
    width: 5rem;
    height: 5rem;
    background: var(--color-white);
    border-top-left-radius: 50%;
    transition: background .45s ease;
}

.card:hover .icon {
    /* background: var(--color-secondary-dark); */
}

.icon:hover .iconBox {
    transform: scale(1.1);
}

.icon::before {
    position: absolute;
    content: "";
    bottom: .375rem;
    left: -1.25rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: .313rem .313rem 0 .313rem var(--color-white);
    transition: box-shadow .45s ease;
}

.card:hover .icon::before {
    /* box-shadow: .313rem .313rem 0 .313rem var(--color-secondary-dark); */
}

.icon::after {
    position: absolute;
    content: "";
    top: -1.25rem;
    right: .375rem;
    background: transparent;
    width: 1.25rem;
    height: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    box-shadow: .313rem .313rem 0 .313rem var(--color-white);
    transition: box-shadow .45s ease;
}

.card:hover .icon::after {
    /* box-shadow: .313rem .313rem 0 .313rem var(--color-secondary-dark); */
}

.iconBox {
    position: absolute;
    inset: .625rem;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s;
}

.iconBox span {
    width: 24px;
    transition: color .45s;
}

.card:hover .iconBox span {
    color: var(--color-primary);
}

.content {
    padding: 1rem .625rem .5rem;
}

.content h3 {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
    transition: color .3s;
    min-height: calc(1.25 * 2em);
    max-height: calc(1.25 * 3em);
}

.card:hover .content h3 {
    color: var(--color-primary-dark);
}

.content p {
    margin: .5rem 0 .875rem;
    color: var(--color-primary-dark);
    font-size: .84rem;
    line-height: 1.6;
    transition: color .3s;
    height: calc(1.6 * 3em);
    text-overflow: ellipsis;
    overflow: hidden;
}

.card:hover .content p {
    color: var(--color-primary-dark);
    opacity: .8;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .875rem;
    gap: 8px;
    flex-wrap: wrap;
}

.meta-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    /* background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25); */
    background: rgba(39, 61, 127, .12);
    border-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 600;
    /* color: var(--color-white); */
    transition: background .3s, color .3s, border-color .3s;
}

/* .card:hover .meta-duration {
  background: rgba(39, 61, 127, .12);
  border-color: var(--color-primary-light);
  color: var(--color-primary-dark);
} */

.meta-duration .tour-arrow {
    font-size: .95rem;
}

.meta-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-from {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* color: rgba(255, 255, 255, .6); */
    color: var(--color-primary-light);
    transition: color .3s;
}

.card:hover .price-from {
    color: var(--color-primary-light);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary-dark);
    line-height: 1;
    text-decoration: none;
}

.old-price {
    font-size: .75rem;
    color: var(--color-gray-400);
    text-decoration: line-through;
    transition: color .3s;
}

.price-per {
    font-size: .65rem;
    /* color: rgba(255, 255, 255, .55); */
    color: var(--color-primary-light);
    transition: color .3s;
}

.card:hover .price-per {
    color: var(--color-primary-light);
}

.card-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .3px;
    border: none;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 3px 14px rgba(242, 183, 5, .35);
    margin-top: 4px;
}

.card-cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 183, 5, .5);
}

.rating-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(15, 20, 40, .7);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, .15);
}

.rating-star {
    color: var(--color-accent);
    font-size: .85rem;
}

/* ============================================================
   10. TAILOR-MADE BANNER
   ============================================================ */
.tailor-banner {
    background-color: var(--color-gray-900);
    background-image: radial-gradient(ellipse at 20% 50%, rgba(39, 61, 127, .55) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(107, 206, 245, .15) 0%, transparent 55%);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
}

.tailor-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.tailor-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 35%, rgba(242, 183, 5, .07) 50%, transparent 65%);
    animation: shimmer 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    60% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

.tailor-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

@media (min-width:768px) {
    .tailor-inner {
        flex-direction: row;
        align-items: center;
        padding: 40px 48px;
        gap: 40px;
    }
}

.tailor-img-wrap {
    flex-shrink: 0;
    position: relative;
    width: 160px;
    order: -1;
}

@media (min-width:768px) {
    .tailor-img-wrap {
        width: 200px;
        order: 0;
    }
}

@media (min-width:1024px) {
    .tailor-img-wrap {
        width: 230px;
    }
}

.tailor-img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(107, 206, 245, .22) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.tailor-img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .35));
    animation: imgFloat 4.5s ease-in-out infinite;
}

@keyframes imgFloat {

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

    50% {
        transform: translateY(-10px);
    }
}

.tailor-text {
    flex: 1;
    text-align: center;
}

@media (min-width:768px) {
    .tailor-text {
        text-align: left;
    }
}

.tailor-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp .6s ease forwards .1s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tailor-title {
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
    opacity: 0;
    animation: fadeUp .6s ease forwards .22s;
}

.tailor-title-accent {
    color: var(--color-accent);
}

.tailor-sub {
    margin-top: 10px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.7;
    max-width: 420px;
    opacity: 0;
    animation: fadeUp .6s ease forwards .34s;
}

@media (max-width:767px) {
    .tailor-sub {
        margin-left: auto;
        margin-right: auto;
    }
}

.tailor-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeUp .6s ease forwards .46s;
}

@media (min-width:768px) {
    .tailor-cta {
        align-items: flex-end;
    }
}

.btn-tailor-primary {
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: .88rem;
    border: none;
    box-shadow: 0 4px 18px rgba(242, 183, 5, .4);
    transition: background .25s, transform .2s, box-shadow .25s;
}

.btn-tailor-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(242, 183, 5, .55);
}

.btn-tailor-outline {
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--color-white);
    font-weight: 600;
    font-size: .85rem;
    border: 1.5px solid rgba(255, 255, 255, .35);
    transition: border-color .25s, background .25s, transform .2s;
}

.btn-tailor-outline:hover {
    border-color: var(--color-secondary);
    background: rgba(107, 206, 245, .1);
    transform: translateY(-2px);
}

.tailor-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp .6s ease forwards .56s;
}

@media (min-width:768px) {
    .tailor-badges {
        justify-content: flex-start;
    }
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
}

.mini-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
}

.tailor-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-accent), var(--color-secondary), var(--color-primary-dark));
    background-size: 200% 100%;
    animation: stripSlide 4s linear infinite;
}

@keyframes stripSlide {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}

/* ============================================================
   11. POPULAR DESTINATIONS (card grid header)
   ============================================================ */
.dest-section .heading-accent {
    position: relative;
    display: inline-block;
}

.dest-section .heading-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60%;
    height: 3px;
    border-radius: 99px;
    background: var(--gradient-accent);
}

/* ═══════════════════════════════════════
       REDESIGNED NAV-WRAP  (sub-category tabs)
    ═══════════════════════════════════════ */
.nav-wrap-section {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 12px rgba(39, 61, 127, .07);
}

.nav-wrap-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* container for the pill group */
.nav-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
    margin-bottom: 20px;
}

.nav-wrap::-webkit-scrollbar {
    display: none;
}

/* label before the tabs */
.nav-wrap-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gray-400);
    white-space: nowrap;
    margin-right: 16px;
    flex-shrink: 0;
}

.filter-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    background: var(--color-gray-100);
    border-radius: 999px;
    padding: 4px;
    flex-shrink: 0;
}

/* sliding bubble */
.filter-bubble {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    background: var(--color-primary);
    border-radius: 999px;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(39, 61, 127, .3);
    transition: left .28s cubic-bezier(.4, 0, .2, 1), width .28s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.filter-nav a {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--color-gray-500);
    white-space: nowrap;
    transition: color .22s;
}

.filter-nav a i {
    font-size: .72rem;
}

.filter-nav a.active {
    color: var(--color-white);
}

.filter-nav a:not(.active):hover {
    color: var(--color-primary);
}

/* result count on right */
.nav-result-count {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .78rem;
    font-weight: 600;
    color: var(--color-gray-400);
    white-space: nowrap;
    padding-left: 16px;
}

.nav-result-count span {
    color: var(--color-primary);
}

/* â”€â”€ Cards grid â”€â”€ */
.cards-section {
    padding: 0 1rem 2rem
}

.tc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

/* â”€â”€ Tour card (same as before) â”€â”€ */
.tc {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    transition: box-shadow .4s ease, transform .3s ease, opacity .35s ease, max-height .4s ease;
    cursor: pointer;
    min-height: 440px;
    max-height: 440px;
}

.tc:hover {
    box-shadow: 0 14px 40px rgba(39, 61, 127, .22);
    transform: translateY(-2px)
}

.tc.hidden {
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.tc-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: height .5s cubic-bezier(.4, 0, .2, 1);
}

.tc:hover .tc-img {
    height: 100%;
}

.tc-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    background: rgba(39, 61, 127, .82);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 11px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    letter-spacing: .4px;
}

.tc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px 30px;
    background: linear-gradient(to top, rgba(15, 25, 60, .78) 0%, transparent 100%);
    z-index: 5;
    opacity: 0;
    transition: opacity .35s ease;
}

.tc:hover .tc-overlay {
    opacity: 1;
    pointer-events: none
}

.tc-title-static {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.tc-static-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--color-secondary);
}

.tc-static-meta span {
    display: flex;
    align-items: center;
    gap: 4px
}

.tc-static-price {
    color: #f2b705;
    font-weight: 600
}

.tc-body {
    padding: 14px 16px 16px;
    position: relative;
    z-index: 6;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tc-title-hover {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 8px;
    line-height: 1.1;
    max-height: calc(1.1 * 4em);
    min-height: calc(1.1 * 2em);
}

.tc-meta-hover {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--color-primary-light);
    margin: 0 0 4px;
}

.tc-meta-hover span {
    display: flex;
    align-items: center;
    gap: 3px
}

.tc-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    height: calc(1.5 * 3em);
    overflow: hidden;
    opacity: 1;
    margin-bottom: 0;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), opacity .35s ease, margin .3s ease;
}

.tc:hover .tc-desc {
    max-height: 0;
    opacity: 0;
    margin-bottom: 12px
}

.tc-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 60px;
    overflow: hidden;
    opacity: 1;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1) .05s, opacity .35s ease .05s;
    margin-top: 7px;
}

.tc:hover .tc-bottom {
    max-height: 0;
    opacity: 0
}

.tc-price {
    font-size: 12px;
    color: #6b7280
}

.tc-price strong {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-block;
    line-height: 1.1
}

.tc-price small {
    display: block;
}

.tc-cta {
    background: var(--color-primary-dark);
    color: #fff;
    border-radius: 10px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background .2s;
}

.tc-cta:hover {
    background: #1d2f66
}

.cta-arr {
    transition: transform .2s
}

.tc-cta:hover .cta-arr {
    transform: translateX(3px)
}


/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonial-area {
    background: var(--color-primary);
}

.testimonial-area .section-title {
    color: var(--color-white);
}

.testimonial-slider {
    padding: 50px 20px;
}

.testimonial-slider .swiper-slide.swiper-slide-next {
    transform: translate(0, 30px);
}

.single-testimonial {
    border: 7px solid var(--color-white);
    border-radius: 45px;
    position: relative;
    text-align: center;
}

.single-testimonial p {
    color: var(--color-white);
    padding: 50px;
    padding-bottom: 30px;
    position: relative;
    z-index: 3;
    font-size: 15px;
    line-height: 24px;
}

.single-testimonial::before {
    content: "";
    position: absolute;
    left: -35px;
    top: -35px;
    background: url(../images/shapes/quotes.png) no-repeat var(--color-primary);
    background-size: 60%;
    width: 126px;
    height: 100px;
    transform: rotate(180deg);
    background-position: 34px 15px;
}

.single-testimonial::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    background: url(../images/shapes/quotes.png) no-repeat var(--color-primary);
    background-size: 60%;
    width: 126px;
    height: 100px;
    background-position: 34px 19px;
}

.round {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.round-1::before {
    content: "";
    position: absolute;
    left: 88px;
    top: -7px;
    width: 50px;
    height: 7px;
    background: var(--color-white);
    border-radius: 30px;
}

.round-1::after {
    content: "";
    position: absolute;
    left: -7px;
    top: 62px;
    width: 7px;
    height: 50px;
    background: var(--color-white);
    border-radius: 30px;
}

.round-2::before {
    content: "";
    position: absolute;
    right: 87px;
    bottom: -7px;
    width: 50px;
    height: 7px;
    background: var(--color-white);
    border-radius: 30px;
}

.round-2::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: 62px;
    width: 7px;
    height: 50px;
    background: var(--color-white);
    border-radius: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

.client-icon {
    margin-right: 15px;
}

.client-info .client-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 16px rgba(0, 0, 0, .16);
}

/* .client-info img {
  filter: invert(1);
  width: 22px;
} */

.client-info h6 {
    color: var(--color-accent);
    font-size: 18px;
}

.client-info span {
    color: var(--color-white);
    font-size: 12px;
}

.swiper-pagination {
    text-align: center;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    background: var(--color-white);
    width: 10px;
    height: 10px;
    border-radius: 26px;
    margin: 0 5px;
    transition: .3s;
}

.swiper-pagination-bullet-active {
    width: 30px;
    background: var(--color-accent);
}

@media(max-width: 768px) {
    .testimonial-slider {
        padding: 0;
    }

    .single-testimonial p {
        padding: 25px 5px 10px 5px;
    }

    .single-testimonial::after {
        right: -10px;
        bottom: -10px;
        width: 70px;
        height: 50px;
        background-position: 20px 10px;
    }

    .single-testimonial::before {
        left: -10px;
        top: -10px;
        width: 70px;
        height: 50px;
        background-position: 20px 10px;
    }

    .client-info {
        padding-bottom: 10px;
    }
}

/* ============================================================
   13. BLOG CARDS
   ============================================================ */
.blog-section {
    background: var(--color-gray-100);
    /* padding: 80px 0; */
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 24px; */
}

@media (min-width:640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    height: 470px;
    position: relative;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: box-shadow .3s;
    border-radius: 14px;
}

.post-card:hover {
    box-shadow: var(--shadow-lg);
}

.post-img {
    height: 400px;
    background: var(--color-gray-900);
    overflow: hidden;
}

.post-img img {
    width: 100%;
    transition: .3s;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.post-card:hover .post-img img {
    transform: scale(1.1);
    opacity: .6;
}

.post-content {
    transition: .3s cubic-bezier(.37, .75, .61, 1.05);
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--color-white);
    padding: 24px;
}

.post-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--color-accent);
}

.post-date {
    position: absolute;
    top: -39px;
    left: 0;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 7px 16px;
    border-top-right-radius: 10px;
    font-weight: 600;
    font-size: .82rem;
    border: 5px solid var(--color-accent);
    border-left: 0;
}

.post-date span {
    position: relative;
    z-index: 20;
}

.post-date::before {
    position: absolute;
    content: "";
    bottom: 39px;
    left: -1px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: -10px 10px 0 var(--color-accent);
    z-index: 0;
}

.post-date::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: -24px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: -8px 4px 0 var(--color-accent);
    z-index: 0;
}

.post-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-family: var(--font-heading);
    line-height: 1.2;
    height: calc(1.2 * 2em);
}

.post-title a {
    color: inherit;
}

.post-subtitle {
    color: var(--color-secondary);
    font-size: .85rem;
    margin-bottom: 10px;
}

.post-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: .3s;
    font-size: .82rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 12px;
    text-overflow: ellipsis;
}

.post-card:hover .post-desc {
    opacity: 1;
    max-height: calc(1.6 * 3em);
}

.post-read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: .85rem;
    transition: color .2s;
}

.post-read-more:hover {
    color: var(--color-accent);
}

.post-read-more svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
     start  Faq Section
   ============================================================ */
.faq-section {
    padding: 80px 24px;
    background: var(--color-off-white);
    position: relative;
    overflow: hidden;
}

/* subtle dot-grid background */
.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(39, 61, 127, .06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.faq-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Section header ---- */
.faq-header {
    text-align: center;
    margin-bottom: 52px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.eyebrow-icon {
    font-size: 1rem;
}

.faq-title {
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: .93rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* ---- Two-column layout ---- */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media (min-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
}

/* ============================================
       ACCORDION
    ============================================ */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}

.accordion-item:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

/* Active / open state */
.accordion-item.open {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(39, 61, 127, .12);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-align: left;
    transition: background .25s;
}

/* Open trigger gets primary bg */
.accordion-item.open .accordion-trigger {
    background: var(--color-primary);
}

/* Icon circle */
.acc-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s, background .3s, transform .35s ease;
}

.acc-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    transition: stroke .3s;
}

/* Open: icon becomes accent circle with × */
.accordion-item.open .acc-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: rotate(45deg);
}

.accordion-item.open .acc-icon svg {
    stroke: var(--color-primary-dark);
}

.acc-question {
    flex: 1;
    font-size: .95rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.35;
    transition: color .3s;
}

.accordion-item.open .acc-question {
    color: var(--color-white);
}

/* chevron on right */
.acc-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--color-gray-400);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: transform .35s ease, stroke .3s;
}

.accordion-item.open .acc-chevron {
    transform: rotate(180deg);
    stroke: rgba(255, 255, 255, .7);
}

/* Accordion body */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
}

.accordion-item.open .accordion-body {
    max-height: 300px;
}

.accordion-body-inner {
    padding: 0 22px 20px 68px;
    font-size: .88rem;
    line-height: 1.75;
    color: var(--color-gray-500);
}

.gotravel-faq-controls {
    display: flex;
    margin-top: 15px;
    width: 100%;
    justify-content: space-between;
    padding: 0 0.5rem;
}

.gotravel-faq-toggle-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    font-family: var(--font-text);
    letter-spacing: 1px;
    text-transform: capitalize;
}

.gotravel-faq-a p {
    font-size: .875rem;
    color: var(--text-body);
    line-height: 1.75;
}

.gotravel-faq-cta-link {
    display: inline-flex;
    align-items: center;
    display: none;
    gap: .5rem;
    color: var(--color-primary);
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s, gap .2s;
}

.gotravel-faq-cta-link svg {
    width: 18px;
    height: 18px;
}

.gotravel-faq-cta-link:hover {
    color: var(--color-accent);
    gap: .75rem;
}

@media (max-width: 768px) {
    .accordion-body-inner {
        padding: 20px;
    }
}

/* ============================================
       SIDEBAR CARD
    ============================================ */
.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Contact card */
.contact-card {
    background: var(--color-gray-100);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

/* subtle inner glow */
.contact-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 206, 245, .18) 0%, transparent 70%);
    pointer-events: none;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* star badge on icon */
.contact-card-icon::after {
    content: '✦';
    position: absolute;
    top: 20px;
    right: 18px;
    font-size: .65rem;
    color: var(--color-accent);
}

.contact-card {
    position: relative;
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 8px;
}

.contact-card-email {
    font-size: .82rem;
    color: var(--color-gray-500);
    margin-bottom: 0;
}

.contact-card-email a {
    color: var(--color-secondary-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}

.contact-card-email a:hover {
    color: var(--color-primary);
}

/* Read All FAQs card */
.readall-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.readall-card p {
    font-size: .83rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-readall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 700;
    font-size: .85rem;
    font-family: 'DM Sans', sans-serif;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(242, 183, 5, .35);
    transition: background .25s, transform .2s, box-shadow .25s;
}

.btn-readall:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(242, 183, 5, .45);
}

.btn-readall-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, transform .25s;
}

.btn-readall:hover .btn-readall-arrow {
    background: var(--color-primary-dark);
    transform: translate(2px, -2px);
}

.btn-readall-arrow svg {
    width: 13px;
    height: 13px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}



/* ============================================
       SCROLL REVEAL
    ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}

/* ============================================================
     End Faq Section
   ============================================================ */
/* ============================================================
   14. FOOTER
   ============================================================ */
.footer-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-gray-100);
}

.footer-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
}

.footer-monuments-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    overflow: hidden;
    pointer-events: none;
}

.footer-monuments-inner {
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: max-content;
    animation: walkLeft 35s linear infinite;
}

.footer-monuments-inner img {
    height: 78px;
    width: auto;
    opacity: .18;
    filter: invert(1) sepia(1) saturate(0) brightness(2);
    object-fit: contain;
}

@keyframes walkLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 50px;
}



.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width:640px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.4fr;
    }
}

.footer-brand-name img {
    filter: brightness(0) invert(1);
    width: 150px;
}

.footer-tagline {
    margin-top: 12px;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}

.social-btn:hover {
    border-color: var(--color-accent);
    background: rgba(242, 183, 5, .12);
}

.social-btn i {
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: .84rem;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s, gap .2s;
}

.footer-links li a::before {
    content: '›';
    color: var(--color-accent);
    font-size: 1rem;
    line-height: 1;
}

.footer-links li a:hover {
    color: var(--color-white);
    gap: 10px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.newsletter-input {
    width: 100%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: .84rem;
    color: var(--color-white);
    font-family: var(--font-body);
    outline: none;
    transition: border-color .2s, background .2s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.newsletter-input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, .12);
}

.newsletter-btn {
    padding: 11px 20px;
    border-radius: var(--radius-sm);
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 700;
    font-size: .84rem;
    border: none;
    font-family: var(--font-heading);
    transition: background .25s, transform .2s;
}

.newsletter-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.footer-divider {
    margin: 40px 0 24px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

@media (min-width:640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
}

.footer-copy span {
    color: var(--color-accent);
}
.footer-copy .site-name{
    color: var(--color-white);
    font-weight: 600;
    text-decoration: underline;
}
.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
    transition: color .2s;
}

.footer-legal a:hover {
    color: var(--color-white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(242, 183, 5, .15);
    border: 1px solid rgba(242, 183, 5, .3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
}

.contact-text strong {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    font-size: .8rem;
    margin-bottom: 2px;
}

/* ============================================================
   End Footer
   ============================================================ */

/* ============================================================
   15. SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .22s;
}

.reveal-d3 {
    transition-delay: .34s;
}

/*====================================================
  start scroll to top
======================================================*/

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 70px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.09);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap::after {
    position: absolute;
    content: "\f062";
    font: var(--fa-font-solid);
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    left: 0;
    color: var(--color-secondary);
    top: 2px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -moz-animation: float 1500ms infinite ease-in-out;
    -webkit-animation: float 1500ms infinite ease-in-out;
    animation: float 1500ms infinite ease-in-out;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-primary);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    stroke: var(--color-primary);
}

@-webkit-keyframes float {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

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

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes float {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

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

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/*=======================================
  end scroll to top
========================================*/

/* ============================================================
       MOBILE FIXED FOOTER
    ============================================================ */
.mobile-fixed-footer {
    display: none;
}

@media(max-width: 767px) {

    .mobile-fixed-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #ffffff;
        border-top: 1px solid #e4edf7;
        box-shadow: 0 -4px 24px rgba(13, 43, 78, .10);
        align-items: stretch;
        justify-content: space-around;
        height: 64px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .mobile-fixed-footer a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        flex: 1;
        color: #6B88A8;
        text-decoration: none;
        font-size: 10px;
        font-family: 'Sora', sans-serif;
        font-weight: 600;
        letter-spacing: .01em;
        padding: 8px 2px 6px;
        transition: color .18s;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-fixed-footer a svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .mobile-fixed-footer a:hover,
    .mobile-fixed-footer a.mob-footer-active {
        color: var(--blue);
    }

    .mobile-fixed-footer a.mob-footer-book {
        flex: 1.15;
        background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
        color: #fff;
        margin: 7px 5px;
        border-radius: 12px;
        font-size: 10px;
        box-shadow: 0 4px 14px rgba(26, 110, 189, .30);
    }

    .mobile-fixed-footer a.mob-footer-book svg {
        stroke: #fff;
    }

    .mobile-fixed-footer a.mob-footer-book:hover {
        opacity: .92;
        color: #fff;
    }
}

/* ============================================================
   END MOBILE FIXED FOOTER
   ============================================================ */
/* ============================================================
      start new home css
    ============================================================ */
/* ============================================================
   4. TOP BAR
   ============================================================ */


/* ============================================================
   5. MAIN NAVBAR
   ============================================================ */
.navbar {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background .35s, box-shadow .35s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(39, 61, 127, .1);
    position: fixed;
    width: 100%;
    z-index: 950;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    height: 72px;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 32px;
    flex-shrink: 0;
}

.nav-logo-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 500%;
    height: 100%;
    background: var(--color-primary);
    opacity: .06;
    pointer-events: none;
    border-radius: 0 999px 999px 0;
    display: none;
}

.logo-box img {
    width: 150px;

}

.nav-links {
    display: none;
    align-items: stretch;
    margin: 0 auto;
    gap: 0;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 18px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-700);
    position: relative;
    transition: color .25s;
    white-space: nowrap
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    width: calc(100% - 36px);
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--color-primary);
}

.nav-item:hover .nav-link::after {
    transform: scaleX(1);
}

.nav-link .chevron {
    font-size: .6rem;
    transition: transform .25s;
    color: var(--color-gray-400);
}

.nav-item:hover .nav-link .chevron {
    transform: rotate(180deg);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0);
    min-width: 210px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    /* box-shadow: 0 16px 44px rgba(39, 61, 127, .14); */
    border: 1px solid var(--color-gray-200);
    /* border-top: 3px solid var(--color-primary); */
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s, transform .28s, visibility .28s;
    z-index: 300;
}

.dropdown-panel::before {
    /* content: ''; */
    position: absolute;
    top: -3px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-bottom-right-radius: 6px;
}

.nav-item:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--color-gray-700);
    border-bottom: 1px solid var(--color-gray-100);
    transition: background .2s, color .2s, padding-left .2s;
    position: relative;
}

.dropdown-panel a:last-child {
    border-bottom: none;
}

.dropdown-panel a::before {
    content: '→';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    background: var(--color-accent);
    transition: transform .25s ease;
    border-radius: 50%;
    transform: translateY(-50%)scale(0);
    color: var(--color-white);
    text-align: center;
}

.dropdown-panel a:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
    padding-left: 22px;
}

.dropdown-panel a:hover::before {
    transform: translateY(-50%)scale(1);
}

.dropdown-panel a i {
    color: var(--color-secondary-dark);
    font-size: .8rem;
    width: 16px;
    text-align: center;
}

.nav-cta-wrap {
    display: none;
    align-items: center;
    padding-left: 20px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .nav-cta-wrap {
        display: flex;
    }
}

.nav-cta-wrap::before {
    content: '';
    display: block;
    width: 1px;
    height: 36px;
    background: var(--color-gray-200);
    margin-right: 20px;
}

.btn-book-now {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(242, 183, 5, .4);
    color: var(--color-primary-dark);
    font-size: .85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: background .3s, transform .2s, box-shadow .3s;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.77, 0, .18, 1);
    z-index: 0;
}

.btn-book-now:hover::before {
    transform: translateX(0);
}

.btn-book-now:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    background: var(--color-primary);
    box-shadow: 0 4px 16px rgba(39, 61, 127, .3);
}

.btn-book-now span,
.btn-book-now i {
    position: relative;
    z-index: 1;
}

.btn-book-now i {
    font-size: .8rem;
    transition: transform .3s;
}

.btn-book-now:hover i {
    transform: translate(3px, -3px);
}

/* hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    margin-left: auto;
    border-radius: var(--radius-sm);
    transition: background .2s;
    margin-top: 25px;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger:hover {
    background: var(--color-gray-100);
}

.ham-bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
    transition: transform .35s, opacity .25s, width .3s;
}

.ham-bar:nth-child(1) {
    width: 100%;
}

.ham-bar:nth-child(2) {
    width: 70%;
}

.ham-bar:nth-child(3) {
    width: 100%;
}

.hamburger.open .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100%;
}

.hamburger.open .ham-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100%;
}

/* mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(27, 38, 75, .6);
    backdrop-filter: blur(4px);
}

.mobile-menu.open {
    display: block;
}

.mobile-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(340px, 88vw);
    height: 100%;
    background: var(--color-white);
    box-shadow: -12px 0 40px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    animation: slideIn .35s cubic-bezier(.77, 0, .18, 1) both;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.mobile-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    opacity: .06;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    pointer-events: none;
}

.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--color-gray-200);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-700);
    font-size: 1rem;
    transition: background .2s, color .2s;
}

.mobile-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.mobile-nav-list {
    padding: 12px 0;
    flex: 1;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--color-gray-100);
    display: block;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--color-gray-700);
    transition: color .2s, background .2s;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    background: var(--color-gray-100);
}

.mobile-nav-link i {
    font-size: .75rem;
    color: var(--color-gray-400);
}

.mobile-sub {
    display: none;
    background: var(--color-gray-100);
    border-top: 1px solid var(--color-gray-200);
}

.mobile-sub.open {
    display: block;
}

.mobile-sub a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px 11px 30px;
    font-size: .83rem;
    color: var(--color-gray-500);
    transition: color .2s;
}

.mobile-sub a i {
    color: var(--color-secondary-dark);
    font-size: .75rem;
}

.mobile-sub a:hover {
    color: var(--color-primary);
}

.mobile-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--color-gray-200);
}

.mobile-book-btn {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 14px;
    transition: background .25s;
}

.mobile-book-btn:hover {
    background: var(--color-primary-dark);
}

.mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--color-gray-500);
}

.mobile-contacts a i {
    color: var(--color-accent);
}

/* Split-row: link takes all space, arrow is a tap target */
.mobile-nav-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-nav-item--has-sub>.mobile-nav-row .mobile-nav-link {
    flex: 1;
    border-bottom: none;
    /* row handles the border */
}

.mobile-arrow {
    flex-shrink: 0;
    width: 52px;
    /* wide enough for easy tap */
    background: none;
    border: none;
    border-left: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    font-size: .75rem;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.mobile-arrow:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.mobile-arrow i {
    transition: transform .25s ease;
    pointer-events: none;
}

/* Remove old border from items with sub (row handles it) */
.mobile-nav-item--has-sub {
    border-bottom: none;
}

/* Sub list: keep display block when open */
.mobile-sub {
    display: none;
    background: var(--color-gray-100);
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-sub.open {
    display: block;
}

.mobile-sub li,
.mobile-sub a {
    display: block;
    /* ensure full-width tap area */
}

.tc-cta {
    background: var(--color-secondary);
    color: var(--color-primary-dark);
}

.tailor-title-accent {
    color: var(--color-secondary-dark)
}

.section-label span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgb(39 61 127);
    background: rgba(39, 61, 127, 0.1);
    border: 1px solid rgba(39, 61, 127, 0.1);
    padding: 5px 18px;
    border-radius: 999px;
    display: inline-block;
}

.newsletter-btn {
    background: var(--color-secondary);
}

.menu__mobile {
    display: none;
}


@media (max-width: 760px) {
    .menu__mobile {
        display: block;
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        width: 100%;
        z-index: 999;
        background: rgb(255, 255, 255);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(201, 169, 97, 0.35);
        box-shadow: rgba(10, 35, 66, 0.25) 0px -8px 32px;
        padding: 10px 12px clamp(10px, 3.5vw, 18px);
        transition: transform 0.3s, opacity 0.3s;
    }
    .menu-mobile-fixed {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 480px;
        margin: 0px auto;
        width: 100%;
    }
.menu-mobile-fixed a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1 1 0%;
        text-align: center;
        color: rgb(43, 52, 128);
        font-family: var(--font-family);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        text-decoration: none;
        gap: 1px;
        transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }    .menu-mobile-fixed a img {
        height: 25px;
        width: 23px;
        object-fit: contain;
        display: block;
        transition: filter 0.3s, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        filter: brightness(0) invert(0) opacity(0.7);
    }
    .menu-mobile-fixed p {
        margin-bottom: 0;
    }
    .footer-section {
    padding-bottom: 49px;
}
}
