﻿* {
    transition: .4s ease-in-out;
    box-sizing: border-box
}

:root {
    --main-color: #16213e;
    --second-color: #e3b75e;
    --third-color: #dbaf56;
    scroll-behavior: smooth;
    --white-color: #fff;
    --muted: #2e333e;
    --box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    --sharp-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    --shadow: 0 24px 70px rgba(6, 29, 53, .14);
    --shadow-soft: 0 14px 40px rgba(6, 29, 53, .10);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1320px;
    --header-h: 84px;
    --ease: cubic-bezier(.2, .8, .2, 1)
}


html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--main-color);
    background: linear-gradient(180deg, #fdfcfb 0, #f7f4ef 100%);
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

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

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

button,
input,
select,
textarea {
    font: inherit
}

iframe {
    width: 100%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial
}

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

/* Custom Select Dropdown Styling */
select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e3b75e' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 12px !important;
    padding-right: 40px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

select:active,
select:focus {
    box-shadow: none !important;
    border: 0 !important;
    outline: 0 !important;
    border-color: var(--second-color) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2316213e' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
}

select:hover {
    border-color: var(--second-color) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2316213e' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
}

/* Select dropdown options styling */
select option {
    background: var(--white-color) !important;
    color: var(--main-color) !important;
    padding: 12px 16px !important;
    border: none !important;
}

select option:hover,
select option:focus {
    background: rgba(227, 183, 94, 0.15) !important;
    color: var(--main-color) !important;
}

select option:checked {
    background: linear-gradient(135deg, var(--second-color) 0%, var(--third-color) 100%) !important;
    color: var(--white-color) !important;
    font-weight: 600 !important;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2
}

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

h2 {
    font-size: 29px;
    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 {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: rgb(66, 69, 72);
    font-size: 17px;
}

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

.form-check-input:focus {
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: 0;
    box-shadow: none
}

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

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

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

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

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

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

::-webkit-scrollbar {
    background: rgba(255, 255, 255, 0);
    width: 7px;
    height: 7px
}

::-webkit-scrollbar-thumb {
    background-color: var(--second-color)
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-color);
}

::-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: .75rem;
    z-index: 20;
    left: 20px;
    font-size: 12px !important
}

.input-box label::before {
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    position: absolute;
    z-index: -1
}

.input-box input:focus {
    margin-bottom: 20px;
    border-top-width: medium;
    border-right-width: medium;
    border-left-width: medium;
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-left-color: currentcolor;
    border-image: initial;
    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: -.5rem;
    background-color: var(--white-color)
}

.input-box input:not(:placeholder-shown)+label,
.input-box input[type=date]:focus+label,
.input-box input[type=date]:valid+label,
.input-box input[type=email]:focus+label,
.input-box input[type=number]:focus+label,
.input-box input[type=tel]:valid+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
}

a,
a:active,
a:focus,
a:hover {
    /* text-decoration: none; */
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: 0;
    color: var(--third-color);
    text-decoration: none;
}

a:active,
a:focus,
a:hover {
    color: var(--third-color) !important
}

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

/*    ======================================================
section-title
   ====================================================== */

.section-title {
    letter-spacing: -0.045em;
    color: var(--main-color);
    /* text-wrap: balance; */
    margin: 10px 0px 12px;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 500;
    font-size: clamp(30px, 4.5vw, 45px);
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -.03em;
}

.tst-subtitle {
    margin: 16px auto 0px;
    max-width: 670px;
    color: var(--main-color);
    font-size: 17px;

}

.about-more-text p a {
    color: #0056b3 !important;
    font-weight: 700;
}

p a {
    color: #0056b3 !important;
    font-weight: 700;
}

/*    ======================================================
section-title
   ====================================================== */
/*    ======================================================
aboutMoreText
   ====================================================== */

.about-more-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    transition: 0.3s;
}

.about-more-text.expanded {
    display: block;
    -webkit-line-clamp: initial;
    line-clamp: initial;
    overflow: visible;
}

.about-intro-copy .section-text {
    margin-bottom: 16px;
    color: var(--muted);
    line-height: 1.8;
    max-height: max-content;
    overflow-y: auto;
}

.about-show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: var(--second-color);
    font-size: 17px;
    font-weight: 600;

    cursor: pointer;
    text-decoration: underline;
    padding: 0px;
}

.about-show-more-btn[hidden] {
    display: none !important
}

/*    ======================================================
aboutMoreText
   ====================================================== */
/*    ======================================================
scroll-top
   ====================================================== */

/* ======================================================
   Scroll To Top
====================================================== */

.scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity .3s, transform .3s;
    will-change: transform, opacity;
    background: conic-gradient(var(--white-color) 0%, var(--second-color) 0%);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.scroll-top-value {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

.scroll-top * {
    pointer-events: none;
}

/*    ======================================================
scroll-top
   ====================================================== */

/*   ======================================================
 floating 
   ====================================================== */

.c4t-floating-actions {
    position: fixed;
    right: auto;
    bottom: 22px;
    z-index: 999;
    display: grid;
    gap: 10px;
    left: 20px
}

.c4t-float-btn {
    font-size: 0px;
    color: transparent
}

.c4t-float-btn img {
    width: 57px;
    height: 46px;
    object-fit: contain;
    display: block;
    pointer-events: none
}


/*    ======================================================
 floating 
   ====================================================== */

/*    ======================================================
menu__mobile
   ====================================================== */
.menu__mobile {
    display: none
}


@media (max-width: 760px) {
    .menu__mobile {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        background: #fff;
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--second-color);
        box-shadow: var(--main-color) 0 -8px 32px;
        padding: 10px 12px clamp(10px, 3.5vw, 18px);
        transition: transform .3s, opacity .3s
    }

    .menu-mobile-fixed {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 480px;
        margin: 0 auto;
        width: 100%
    }

    .c4t-floating-actions {
        display: none
    }

    .menu-mobile-fixed a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1 1 0%;
        text-align: center;
        color: var(--second-color);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .12em;
        text-decoration: none;
        gap: 1px;
        transition: color .3s cubic-bezier(.25, .8, .25, 1)
    }

    .menu-mobile-fixed a img {
        height: 25px;
        width: 23px;
        object-fit: contain;
        display: block;
        transition: filter .3s, transform .3s cubic-bezier(.25, .8, .25, 1);
        filter: brightness(0) invert(0) opacity(.7)
    }

    .menu-mobile-fixed a p {
        margin-bottom: 0;
        font-size: 9px
    }

    .scroll-top.active {
        bottom: 85px !important;
        right: 20px !important;
        height: 50px !important;
        width: 50px !important
    }
}

/*    ======================================================
menu__mobile
   ====================================================== */
/* Side Menu (mobile drawer) */
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 326px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    z-index: 1050;
    transition: left 0.35s ease-in-out;
    display: block !important;
}

.side-menu.open {
    left: 0 !important;
}

/* Overlay to close menu */
.close-menu-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    display: none;
}

.close-menu-sidebar.open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
}

/* Close button styling */
.close-side-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(227, 183, 94, 0.3);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #10243c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-side-menu:hover {
    background: #e3b75e;
    color: #fff;
    border-color: #e3b75e;
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(227, 183, 94, 0.4);
}

/* Mobile menu links */
.side-menu .menu-mobile {
    padding: 0;
}

.side-menu .inner-side {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f5ef 0%, #e8e4d9 100%);
    padding: 20px;
}

.side-menu .inner-side::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" fill="rgba(227, 183, 94, 0.08)">𓂀</text></svg>');
    background-size: 120px;
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
}

.side-menu .menu-mobile .mobile-logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.side-menu .mobile.nav-menu {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.side-menu .mobile.nav-menu .mobile.nav-item {
    margin-bottom: 8px;
    position: relative;
}

.side-menu .nav-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-menu .mobile.nav-menu .nav-link {
    color: #10243c;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 8px 11px;
    border-radius: 10px;
    /* background: rgba(255, 255, 255, 0.6); */
    /* backdrop-filter: blur(10px); */
    /* border: 1px solid rgba(227, 183, 94, 0.2); */
    transition: all 0.3s ease;
}

.side-menu .mobile.nav-menu .nav-link:hover {
    /* color: #e3b75e; */
    /* background: rgba(227, 183, 94, 0.15); */
    /* border-color: #e3b75e; */
    /* transform: translateX(5px); */
    /* box-shadow: 0 4px 15px rgba(227, 183, 94, 0.2); */
}

.side-menu .dropdown-toggle {
    width: 40px;
    height: 40px;
    margin-left: 8px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #e3b75e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.side-menu .dropdown-toggle:hover {
    background: #e3b75e;
    color: #fff;
}

.side-menu .dropdown-toggle i {
    transition: transform 0.3s ease;
}

.side-menu .dropdown-toggle.rotated i {
    transform: rotate(180deg);
}

.side-menu .mobile.nav-menu .sub-menu {
    list-style: none;
    padding: 10px 0 10px 0;
    margin-top: 8px;
    background: #f8f9fa;
    border-radius: 8px;
    display: none;
}

.side-menu .mobile.nav-menu .sub-menu.open {
    display: flex;
    flex-direction: column;
}

.side-menu .mobile.nav-menu .sub-menu li a {
    font-size: 0.95rem;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.side-menu .mobile.nav-menu .sub-menu li a:hover {
    color: #e3b75e;
    background: rgba(227, 183, 94, 0.1);
}


.side-menu .nav-item.mobile.box .theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 11px;
    background: linear-gradient(135deg, #e3b75e 0%, #c89943 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 183, 94, 0.3);
    margin-top: 5px;
    /* width: 100%; */
}

.side-menu .nav-item.mobile.box .theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 183, 94, 0.4);
}

.side-menu .he-language {
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.side-menu .he-language__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227, 183, 94, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.side-menu .he-language__toggle:hover {
    border-color: #e3b75e;
    background: rgba(227, 183, 94, 0.1);
}

.side-menu .he-language__active-flag {
    width: 24px;
    height: 18px;
    border-radius: 3px;
}

.side-menu .he-language__label {
    font-weight: 600;
    color: #10243c;
}

.side-menu .he-language__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 10;
}

.side-menu .he-language__menu[aria-expanded="true"] {
    display: block;
}

.side-menu .he-language__menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #10243c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.side-menu .he-language__menu a:hover {
    background: rgba(227, 183, 94, 0.1);
    color: #e3b75e;
}

.side-menu .he-language__menu a img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
}

.side-menu .he-language__menu a.is-current {
    background: rgba(227, 183, 94, 0.15);
    color: #e3b75e;
}

/* Currency selector styling */
.side-menu .mobile-pref {
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.side-menu .mobile-pref__trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(227, 183, 94, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.side-menu .mobile-pref__trigger:hover {
    border-color: #e3b75e;
    background: rgba(227, 183, 94, 0.1);
}

.side-menu .mobile-pref__trigger i {
    color: #e3b75e;
    font-size: 1rem;
}

.side-menu .mobile-pref__trigger span {
    font-weight: 600;
    color: #10243c;
}

.side-menu .mobile-pref__trigger b {
    margin-left: auto;
    color: #e3b75e;
    font-weight: 700;
}

.side-menu .mobile-pref__options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 10;
}

.side-menu .mobile-pref__options[aria-expanded="true"] {
    display: block;
}

.side-menu .mobile-pref__options button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #10243c;
    font-weight: 500;
    font-size: 13px;
}

.side-menu .mobile-pref__options button:hover {
    background: rgba(227, 183, 94, 0.1);
    color: #e3b75e;
}

.side-menu .mobile-pref__options button b {
    font-weight: 600;
}

.side-menu .mobile-pref__options button.is-active {
    background: rgba(227, 183, 94, 0.15);
    color: #e3b75e;
    font-size: 16px;
}

.side-menu .mobile-pref__options a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #10243c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.side-menu .mobile-pref__options a:hover {
    background: rgba(227, 183, 94, 0.1);
    color: #e3b75e;
}

.side-menu .mobile-pref__options a img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
}

.side-menu .mobile-pref__options a.is-active {
    background: rgba(227, 183, 94, 0.15);
    color: #e3b75e;
}

@media (min-width: 992px) {

    .side-menu,
    .close-menu-sidebar {
        display: none;
    }
}

/*    ======================================================
partners
   ====================================================== */

.partners {
    background: linear-gradient(180deg, #f8f5ef 0%, #b8893221 100%);
    padding-top: 30px;
}

.partners .swiper-slide img {
    height: 114px;
    width: 201px;
    max-height: 98px;
    object-fit: contain;
    transition: 0.2s;
    /* filter: brightness(0); */
}

.swiper-horizontal {
    touch-action: pan-y;
    padding-bottom: 40px;
}

.partners .swiper-wrapper {
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 11px;
    display: inline-block;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--second-color);
    width: 21px;
    height: 10px;
}

.tst-header {
    /* text-align: center; */
    margin-bottom: 39px;
    position: relative;
}

/*    ======================================================
         CLIENT TESTIMONIALS SECTION - Photo Grid Style
     ====================================================== */

.client-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-title {
    margin-bottom: 16px;
}

.testimonials-header .section-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Client Story Cards */
.client-stories-grid {
    margin-bottom: 50px;
}

.client-story-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.client-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.story-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.client-story-card:hover .story-photo {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.client-story-card:hover .story-overlay {
    transform: translateY(0);
}

.client-info {
    color: #ffffff;
}

.client-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
    margin-bottom: 5px;
}

.rating i {
    color: #ffc107;
    font-size: 14px;
}

.tour-location {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.story-content {
    padding: 25px;
}

.story-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--second-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--third-color);
}

/* View More Button */
.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b4a74, #2c3e50);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 74, 116, 0.3);
}

.btn-view-more:hover {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 74, 116, 0.4);
    color: #ffffff;
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .client-testimonials {
        padding: 60px 0;
    }

    .story-image {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .client-story-card {
        margin-bottom: 30px;
    }

    .story-image {
        height: 200px;
    }

    .story-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }
}

/*    ======================================================
partners
   ====================================================== */

/* <!-- ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â
         FOOTER - Modern Design End
    ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â --> */

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â
   TESTIMONIALS v2 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Light Editorial Design
   ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */

.tst2-section {
    position: relative;
    padding: 30px 0 0px;
    /* background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%); */
    overflow: hidden;
}

/* Ambient orbs */
.tst2-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tst2-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.tst2-bg__orb--1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(227, 183, 94, .25) 0%, transparent 70%);
    top: -120px;
    left: -120px;
}

.tst2-bg__orb--2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(219, 175, 86, .18) 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
    animation-delay: -4s;
}

.tst2-bg__orb--3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(227, 183, 94, .12) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: -2s;
}

@keyframes orbFloat {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-30px) scale(1.06);
    }
}

.tst2-bg__hieroglyph {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    font-size: 180px;
    line-height: 1;
    opacity: .07;
    color: var(--second-color);
    writing-mode: vertical-lr;
    user-select: none;
    letter-spacing: -10px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Header ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.tst2-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}



.tst2-title {
    font-size: clamp(28px, 3.5vw, 43px);
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -.03em;
}

.tst2-intro {
    /* max-width: 680px; */
    /* margin: 0 auto 20px; */
    text-align: center;
}

.tst2-intro p {
    color: #5f6470;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.tst2-intro a {
    color: var(--second-color) !important;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Stats Bar ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.tst2-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(227, 183, 94, .28);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-xl);
    padding: 24px 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.tst2-stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.tst2-stat__num {
    display: block;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--second-color);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -.03em;
}

.tst2-stat__num span {
    font-size: .6em;
    opacity: .8;
}

.tst2-stat__label {
    font-size: 13px;
    color: #727680;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tst2-stat__divider {
    width: 1px;
    height: 48px;
    background: rgba(22, 33, 62, .12);
    flex-shrink: 0;
    margin: 0 24px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Cards ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.tst2-card {
    background: #fff;
    border: 1px solid rgba(22, 33, 62, .09);
    border-radius: var(--radius-lg);
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.tst2-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 183, 94, .1) 0%, transparent 55%);
    border-radius: inherit;
    pointer-events: none;
}

.tst2-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 183, 94, .35);
    box-shadow: 0 22px 50px rgba(22, 33, 62, .13), 0 0 0 1px rgba(227, 183, 94, .12) inset;
}

.tst2-card__quote-icon {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 80px;
    line-height: .8;
    color: rgba(227, 183, 94, .12);
    pointer-events: none;
    user-select: none;
    transition: none;
}

.tst2-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.tst2-card__stars i {
    color: var(--second-color);
    font-size: 14px;
}

.tst2-card__source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
    margin: -13px 0 20px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(22, 33, 62, .08);
    position: relative;
    z-index: 1;
}

.tst2-card__source img {
    width: 122px;
    height: 34px;
    object-fit: contain;
    object-position: left center;
}

.tst2-card__source span {
    color: #7c838b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.swiper-slide[data-review-source="tripadvisor"] .tst2-card {
    border-top: 3px solid #00aa6c;
}

.swiper-slide[data-review-source="trustpilot"] .tst2-card {
    border-top: 3px solid #00b67a;
}

.swiper-slide[data-review-source="tourradar"] .tst2-card {
    border-top: 3px solid #55a9d9;
}

.swiper-slide[data-review-source="tripadvisor"] .tst2-card__stars {
    gap: 5px;
}

.swiper-slide[data-review-source="tripadvisor"] .tst2-card__stars i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00aa6c;
    color: transparent;
}

.swiper-slide[data-review-source="trustpilot"] .tst2-card__stars {
    gap: 3px;
}

.swiper-slide[data-review-source="trustpilot"] .tst2-card__stars i {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    background: #00b67a;
    color: #fff;
    font-size: 10px;
}

.swiper-slide[data-review-source="tourradar"] .tst2-card__stars i {
    color: #f5a623;
    font-size: 15px;
}

.tst2-card__heading {
    font-size: 17px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tst2-card p {
    margin: 0px 0px 10px;
    overflow: auto;
    color: rgba(13, 59, 76, 0.75);
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    height: 138px;
}

/* .tst2-card__text {
    color: #5f6470;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
} */

.tst2-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(22, 33, 62, .09);
}

.tst2-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(227, 183, 94, .4);
    transition: border-color .3s;
}

.tst2-card:hover .tst2-card__avatar {
    border-color: var(--second-color);
}

.tst2-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tst2-card__author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 2px;
}

.tst2-card__author-info span {
    font-size: 12px;
    color: #777b84;
}

.tst2-card__author-info i {
    color: var(--second-color);
    font-size: 11px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Swiper ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.tst2-swiper {
    padding-bottom: 20px !important;
}

.tst2-filters {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    max-width: 100%;
    margin: 26px 0 16px;
    padding: 8px;
    border: 1px solid rgba(22, 33, 62, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 35px rgba(22, 33, 62, .07);
    overflow-x: auto;
    scrollbar-width: none;
}

.tst2-filters::-webkit-scrollbar {
    display: none;
}

.tst2-platform-summary {
    display: grid;
    grid-template-columns: minmax(125px, auto) 1fr auto;
    align-items: center;
    gap: 20px;
    margin: 0 0 26px;
    padding: 17px 20px;
    border: 1px solid rgba(22, 33, 62, .09);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(22, 33, 62, .06);
}

.tst2-platform-summary.is-hidden {
    display: none;
}

.tst2-platform-summary__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--main-color);
}

.tst2-platform-summary__brand img {
    display: block;
    width: 132px;
    height: 38px;
    object-fit: contain;
    object-position: left center;
}

.tst2-platform-summary__all {
    display: grid;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    place-items: center;
    background: var(--main-color);
    color: var(--second-color);
}

.tst2-platform-summary__rating {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--main-color);
    font-size: 13px;
}

.tst2-platform-summary__stars {
    display: flex;
    gap: 4px;
    color: #00aa6c;
    font-size: 17px;
}

.tst2-platform-summary[data-source="trustpilot"] .tst2-platform-summary__stars {
    color: #00b67a;
}

.tst2-platform-summary[data-source="tourradar"] .tst2-platform-summary__stars {
    color: #f5a623;
}

.tst2-platform-summary__rating span b {
    font-weight: 800;
}

.tst2-platform-summary__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 148px;
    padding: 11px 15px;
    border: 1px solid var(--main-color);
    border-radius: 10px;
    background: var(--main-color);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.tst2-platform-summary__link:hover {
    background: var(--second-color);
    color: var(--main-color);
    transform: translateY(-2px);
}

.tst2-platform-summary__link.is-hidden {
    display: none;
}

@media (max-width: 767px) {
    .tst2-platform-summary {
        grid-template-columns: 1fr auto;
        gap: 12px;
        margin: 0 0 20px;
        padding: 15px;
    }

    .tst2-platform-summary__rating {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-wrap: wrap;
    }

    .tst2-platform-summary__brand img {
        width: 98px;
        height: 30px;
    }

    .tst2-platform-summary__link {
        padding: 9px 11px;
        font-size: 11px;
    }
}

.tst2-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 52px;
    padding: 9px 15px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    color: var(--main-color);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.tst2-filter:hover {
    background: rgb(227 183 94 / 0%);
    border-color: rgb(227 183 94 / 0%);
}

.tst2-filter:focus-visible {
    outline: 3px solid rgba(227, 183, 94, .35);
    outline-offset: 2px;
}

.tst2-filter.is-active {
    border-color: rgba(227, 183, 94, .42);
    background: #fff;
    color: var(--main-color);
    box-shadow: 0 7px 18px rgba(22, 33, 62, .2);
}

.tst2-filter--brand {
    min-width: 145px;
    justify-content: center;
}

.tst2-filter--brand img {
    display: block;
    width: 151px;
    height: 59px;
    object-fit: contain;
    transition: filter .25s ease, transform .25s ease;
}

.tst2-filter--brand:hover img {
    transform: scale(1.04);
}

.tst2-filter--brand.is-active img {
    transform: scale(1.03);
}

.tst2-filter__icon {
    display: grid;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    place-items: center;
    background: #fff;
    font-size: 11px;
}

.tst2-filter__icon--all {
    color: var(--second-color);
}

.tst2-filter__icon--tripadvisor {
    color: #00aa6c;
}

.tst2-filter__icon--tourradar {
    color: #55a9d9;
}

.tst2-filter__icon--trustpilot {
    color: #00b67a;
}

.tst2-swiper .swiper-slide {
    height: auto;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Navigation ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.tst2-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 40px;
}

.tst2-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(22, 33, 62, .15);
    background: #fff;
    color: var(--main-color);
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 15px;
    transition: background .3s, border-color .3s, transform .3s;
    flex-shrink: 0;
}

.tst2-btn:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    transform: scale(1.1);
    color: #fff;
}

.tst2-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.tst2-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(22, 33, 62, .22);
    border-radius: 100px;
    opacity: 1;
    transition: background .3s, width .3s;
}

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

/* Responsive */
@media (max-width: 767px) {
    .tst2-section {
        padding: 30px 0 30px;
    }

    .tst2-stats {
        padding: 20px 24px;
        gap: 0;
    }

    .tst2-stat__divider {
        display: none;
    }

    .tst2-stat {
        min-width: 50%;
    }

    .tst2-bg__hieroglyph {
        display: none;
    }

    .tst2-card {
        padding: 28px 22px 22px;
    }

    .tst2-filters {
        width: 100%;
        justify-content: flex-start;
        gap: 5px;
        margin: 20px 0 12px;
        padding: 6px;
    }

    .tst2-filter {
        min-height: 44px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .tst2-filter--brand {
        min-width: 108px;
    }

    .tst2-filter--brand img {
        /* width: 92px; */
        /* height: 26px; */
    }

    .tst2-card__source img {
        width: 102px;
        height: 29px;
    }

    .tst2-card__source span {
        font-size: 9px;
    }
}



/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â
   SUBSCRIBE SECTION ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Egyptian Heritage Inspired Design
   ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */

.subscribe-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #16213e 0%, #1a2d4a 50%, #16213e 100%);
}

.subscribe-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pyramid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(135deg, rgba(227, 183, 94, 0.03) 25%, transparent 25%),
        linear-gradient(225deg, rgba(227, 183, 94, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, rgba(227, 183, 94, 0.03) 25%, transparent 25%),
        linear-gradient(315deg, rgba(227, 183, 94, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    animation: patternMove 20s linear infinite;
}

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

    100% {
        background-position: 60px 60px;
    }
}

.sand-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(22, 33, 62, 0.3) 100%);
}

.subscribe-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.subscribe-content {
    color: var(--white-color);
}

.subscribe-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(227, 183, 94, 0.15);
    border: 1px solid rgba(227, 183, 94, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--second-color);
}

.subscribe-badge i {
    font-size: 16px;
}

.subscribe-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white-color);
}

.subscribe-title .highlight {
    background: linear-gradient(90deg, var(--second-color), #f5d27a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subscribe-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 500px;
}

.subscribe-text strong {
    color: var(--second-color);
    font-weight: 700;
}

.subscribe-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--second-color);
    font-size: 18px;
}

/* Right Form */
.subscribe-form-wrapper {
    position: relative;
}

.form-decoration {
    position: absolute;
    inset: -20px;
    pointer-events: none;
}

.hieroglyph-decoration {
    position: absolute;
    font-size: 120px;
    color: rgba(227, 183, 94, 0.08);
    line-height: 1;
    user-select: none;
}

.hieroglyph-decoration:first-child {
    top: -30px;
    left: -30px;
}

.hieroglyph-decoration.hieroglyph-2 {
    bottom: -30px;
    right: -30px;
    font-size: 100px;
}

.subscribe-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-select-custom {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(22, 33, 62, 0.1);
    border-radius: 12px;
    font-size: 15px;
    background: var(--white-color);
    color: var(--main-color);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select-custom:focus {
    outline: none;
    border-color: var(--second-color);
    box-shadow: 0 0 0 4px rgba(227, 183, 94, 0.1);
}

.form-select-custom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2316213e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
    cursor: pointer;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--second-color), #dbaf56);
    border: none;
    border-radius: 12px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(227, 183, 94, 0.4);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(227, 183, 94, 0.5);
}

.subscribe-btn i {
    transition: transform 0.3s ease;
}

.subscribe-btn:hover i {
    transform: translateX(5px);
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: rgba(22, 33, 62, 0.6);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--second-color);
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .subscribe-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .subscribe-content {
        text-align: center;
    }

    .subscribe-text {
        max-width: 100%;
    }

    .subscribe-features {
        align-items: center;
    }

    .subscribe-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .subscribe-section {
        padding: 60px 0;
    }

    .subscribe-title {
        font-size: 28px;
    }

    .subscribe-form {
        padding: 25px 20px;
    }

    .hieroglyph-decoration {
        font-size: 80px;
    }

    .hieroglyph-decoration.hieroglyph-2 {
        font-size: 70px;
    }
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â
   REAL STORIES v2 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Light Video Showcase
   ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢Ãƒâ€šÃ‚Â */

.rs2-section {
    background: #fff;
    padding: 0;
    position: relative;
}

/* Film strip border */
.rs2-filmstrip {
    height: 18px;
    background: #f5ecdc;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(227, 183, 94, .3);
}

.rs2-filmstrip--bottom {
    border-top: none;
    border-bottom: 1px solid rgba(227, 183, 94, .3);
}



/* Inner content area */
.rs2-section>.container {
    padding-top: 72px;
    padding-bottom: 72px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Header ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.rs2-header {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 56px;
}

.rs2-header__left {
    flex-shrink: 0;
}

.rs2-header__right {
    flex: 1;
}



.rs2-title {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    color: var(--main-color);
    line-height: 1.1;
    letter-spacing: -.04em;
    margin: 0;
}

.rs2-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--second-color), #f5d27a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs2-intro {
    margin-bottom: 16px;
}

.rs2-intro p {
    color: #5f6470;
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 10px;
}

.rs2-intro a {
    color: var(--second-color) !important;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Video Grid ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.rs2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    margin-bottom: 48px;
}

/* Featured card spans full left column height */
.rs2-video-card--featured {
    grid-row: 1 / 3;
}

.rs2-video-card {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #f7f3ec;
    border: 1px solid rgba(22, 33, 62, .08);
    box-shadow: var(--shadow-soft);
}

.rs2-thumb {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.rs2-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
    min-height: 200px;
}

.rs2-video-card--featured .rs2-thumb img {
    min-height: 400px;
}

.rs2-video-card:hover .rs2-thumb img {
    transform: scale(1.06);
}

/* Overlay */
.rs2-thumb__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s var(--ease);
}

.rs2-video-card:hover .rs2-thumb__overlay,
.rs2-video-card:focus .rs2-thumb__overlay {
    opacity: 1;
}

.rs2-play-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.8);
    transition: transform .4s var(--ease);
}

.rs2-video-card:hover .rs2-play-wrap {
    transform: translate(-50%, -50%) scale(1);
}

.rs2-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 22px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.rs2-play-btn i {
    margin-left: 4px;
}

.rs2-play-btn:hover {
    background: rgba(255, 0, 0, .8);
    border-color: #f00;
    transform: scale(1.1);
}

/* Meta info (bottom of card) */
.rs2-thumb__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 18px;
    transform: translateY(8px);
    transition: transform .4s var(--ease);
}

.rs2-video-card:hover .rs2-thumb__meta {
    transform: translateY(0);
}

.rs2-thumb__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--second-color);
    display: block;
    margin-bottom: 4px;
}

.rs2-thumb__title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    margin: 0;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ CTA ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.rs2-cta {
    text-align: center;
}

.rs2-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #c4302b 0%, #ff0000 100%);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    box-shadow: 0 8px 32px rgba(255, 0, 0, .3);
}

.rs2-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 0, 0, .4);
    color: #fff !important;
}

.rs2-more-btn i {
    font-size: 20px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Modal ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.rs2-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs2-modal[hidden] {
    display: none;
}

.rs2-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(6px);
}

.rs2-modal__box {
    position: relative;
    z-index: 1;
    width: min(900px, 96vw);
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(22, 33, 62, .12);
    box-shadow: 0 40px 100px rgba(22, 33, 62, .2);
}

.rs2-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f6f1e8;
    border: 1px solid rgba(22, 33, 62, .12);
    color: var(--main-color);
    font-size: 16px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .3s;
}

.rs2-modal__close:hover {
    background: rgba(255, 0, 0, .8);
    color: #fff;
}

.rs2-modal__title {
    padding: 20px 56px 0 22px;
    font-size: 16px;
    color: var(--main-color);
    font-weight: 600;
}

.rs2-modal__iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 16px;
}

.rs2-modal__iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 991px) {
    .rs2-header {
        flex-direction: column;
        gap: 28px;
    }

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

    .rs2-video-card--featured {
        grid-row: auto;
    }

    .rs2-video-card--featured .rs2-thumb img {
        min-height: 260px;
    }

    .rs2-thumb__overlay {
        opacity: 1;
    }

    .rs2-play-wrap {
        transform: translate(-50%, -50%) scale(1) !important;
    }

    .rs2-thumb__meta {
        transform: translateY(0) !important;
    }
}

@media (max-width: 600px) {
    .rs2-section>.container {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .rs2-play-btn {
        width: 54px;
        height: 54px;
        font-size: 18px;
    }

    .rs2-more-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Three-card video gallery */
.rs2-section {
    background: linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
    overflow: hidden;
}

.rs2-section::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    top: -180px;
    right: -100px;
    border-radius: 50%;
    border: 70px solid rgba(227, 183, 94, .09);
    pointer-events: none;
}

.rs2-header {
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 42px;
    position: relative;
}

.rs2-header__left {
    max-width: 650px;
}

.rs2-header__right {
    max-width: 430px;
}

.rs2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 8px 15px;
    border: 1px solid rgba(196, 48, 43, .18);
    border-radius: 999px;
    background: #fff;
    color: #c4302b !important;
    box-shadow: 0 8px 24px rgba(22, 33, 62, .06);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.rs2-eyebrow:hover {
    color: #c4302b !important;
    transform: translateY(-2px);
}

.rs2-lead {
    margin: 0;
    color: #606570;
    font-size: 16px;
    line-height: 1.8;
}

.rs2-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 24px;
    margin-bottom: 40px;
}

.rs2-video-card,
.rs2-video-card--featured {
    grid-row: auto;
    aspect-ratio: 16 / 11;
    border-radius: 22px;
    background: #fff;
    border: 8px solid #fff;
    box-shadow: 0 18px 45px rgba(22, 33, 62, .12);
}

.rs2-video-card:hover,
.rs2-video-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(22, 33, 62, .17);
    outline: none;
}

.rs2-thumb img,
.rs2-video-card--featured .rs2-thumb img {
    min-height: 0;
    height: 100%;
    border-radius: 14px;
}

.rs2-thumb__overlay {
    opacity: 1;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(22, 33, 62, .05) 25%, rgba(22, 33, 62, .82) 100%);
}

.rs2-play-wrap,
.rs2-video-card:hover .rs2-play-wrap {
    transform: translate(-50%, -50%) scale(1);
}

.rs2-play-btn {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 0;
    color: #c4302b;
    box-shadow: 0 10px 30px rgba(22, 33, 62, .25);
}

.rs2-video-card:hover .rs2-play-btn {
    background: #c4302b;
    color: #fff;
    transform: scale(1.08);
}

.rs2-thumb__meta {
    padding: 22px;
    transform: none;
}

.rs2-thumb__num {
    color: #f2cb79;
}

.rs2-thumb__title {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .rs2-header {
        align-items: flex-start;
    }

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

@media (max-width: 650px) {
    .rs2-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rs2-video-card,
    .rs2-video-card--featured {
        aspect-ratio: 16 / 10;
    }

    .rs2-thumb__title {
        font-size: 16px;
    }
}

/* Classic-modern treatment inspired by the original Egypt Tours Gate layout */
.rs2-section {
    background: #fff;
    padding: 78px 0 72px;
    border-top: 1px solid #f0ece5;
}

.rs2-section::before {
    display: none;
}

.rs2-section>.container {
    padding-top: 0;
    padding-bottom: 0;
}

.rs2-header {
    display: block;
    max-width: 740px;
    margin: 0 auto 36px;
    text-align: center;
}

.rs2-header__left,
.rs2-header__right {
    max-width: none;
}

.rs2-eyebrow {
    margin-bottom: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #c4302b !important;
}

.rs2-title {
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 700;
    letter-spacing: -.025em;
    margin-bottom: 14px;
}

.rs2-title em {
    color: var(--second-color);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.rs2-lead {
    max-width: 620px;
    margin: 0 auto;
    font-size: 15.5px;
    line-height: 1.75;
}

.rs2-grid {
    gap: 18px;
    margin-bottom: 32px;
}

.rs2-video-card,
.rs2-video-card--featured {
    aspect-ratio: 16 / 10;
    border: 0;
    border-radius: 9px;
    background: #f4f1eb;
    box-shadow: 0 8px 24px rgba(22, 33, 62, .09);
}

.rs2-video-card:hover,
.rs2-video-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(22, 33, 62, .14);
}

.rs2-thumb img,
.rs2-video-card--featured .rs2-thumb img,
.rs2-thumb__overlay {
    border-radius: 9px;
}

.rs2-thumb__overlay {
    background: linear-gradient(180deg, rgba(22, 33, 62, .02) 38%, rgba(22, 33, 62, .68) 100%);
}

.rs2-play-btn {
    width: 54px;
    height: 54px;
    font-size: 18px;
    background: rgba(255, 255, 255, .95);
    color: #c4302b;
    box-shadow: 0 8px 22px rgba(22, 33, 62, .2);
}

.rs2-thumb__meta {
    padding: 16px 17px;
    text-align: left;
}

.rs2-thumb__num {
    display: none;
}

.rs2-thumb__title {
    font-size: 14px;
    font-weight: 700;
}

.rs2-more-btn {
    padding: 12px 25px;
    border-radius: 5px;
    background: var(--main-color);
    box-shadow: none;
    font-size: 13px;
}

.rs2-more-btn:hover {
    box-shadow: 0 10px 24px rgba(22, 33, 62, .2);
}

@media (max-width: 767px) {
    .rs2-section {
        padding: 58px 0 54px;
    }

    .rs2-header {
        margin-bottom: 28px;
    }

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

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--second-color), var(--third-color));
}

.footer-content {
    padding: 40px 0 0px;
    position: relative;
    z-index: 2;
}

/* Company Info Section */
.footer-company {
    padding-right: 20px;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 133px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.7);
}

.company-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.trust-indicators {
    margin-bottom: 25px;
    display: flex;
    align-content: flex-start;
    justify-content: center;
    gap: 14px;
    align-items: center;
}

.trust-badge {
    max-height: 40px;
    width: auto;
    filter: brightness(1.1);
    margin-bottom: 15px;
    display: block;
}

/* TripAdvisor Widget Styling */
.TA_rated {
    margin-top: 10px;
}

.TA_rated .widFRR {
    max-width: 100%;
    font-size: 12px;
}

.TA_rated img {
    max-width: 150px;
    height: auto;
}

/* Social Media */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 20px;
}

.social-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--second-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--second-color);
    border-color: var(--third-color);
    transform: translateY(-3px);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(227, 183, 94, 0.3);
}

/* Platform-specific hover colors */
.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #166FE5;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    border-color: #0d8bd9;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.social-icon.tripadvisor:hover {
    background: #00AA6C;
    border-color: #009960;
    box-shadow: 0 8px 25px rgba(0, 170, 108, 0.3);
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #cc0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.social-icon i,
.social-icon svg {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    padding: 0 15px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--second-color), var(--third-color));
    border-radius: 2px;
}

.link-list {
    /* list-style: none; */
    /* padding: 0; */
    /* margin: 0; */
    display: flex;
    flex-direction: column;
}

.link-list li {
    margin-bottom: 12px;
}

.link-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.link-list a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--second-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.link-list a:hover {
    color: #ffffff !important;
    padding-left: 15px;
}

.link-list a:hover::before {
    opacity: 1;
}

/* Contact & Newsletter Section */
.footer-contact-newsletter {
    padding-left: 20px;
}

.contact-info {
    margin-bottom: 35px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--second-color);
    font-size: 18px;
    margin-top: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-value {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--second-color);
}

/* Newsletter */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.newsletter-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form .input-group {
    position: relative;
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.newsletter-input:focus {
    outline: none;
    border-color: var(--second-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: linear-gradient(135deg, var(--second-color), var(--third-color));
    border: none;
    border-radius: 6px;
    padding: 0 15px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateX(-2px);
    box-shadow: 0 4px 15px rgba(227, 183, 94, 0.3);
}

.newsletter-btn i {
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* background: rgba(0, 0, 0, 0.2); */
}

.copyright {
    font-size: 18px;
    color: #fff;
    margin: 0;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Background Elements */
.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    background: radial-gradient(circle, rgba(227, 183, 94, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.pattern-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.pattern-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(219, 175, 86, 0.08) 0%, transparent 70%);
}

.footer-copy a {
    color: #fff !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-content {
        padding: 50px 0 0;
    }

    .footer-company,
    .footer-contact-newsletter {
        padding: 0;
        margin-bottom: 0;
    }

    .footer-links {
        padding: 0;
        margin-bottom: 0;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .newsletter-form .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-btn {
        position: static;
        width: 100%;
        padding: 12px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copyright {
        text-align: center;
        margin-bottom: 15px;
    }
}

/* <!-- ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â
         FOOTER - Modern Design End
    ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â --> */

/* ==============================================
 videos
============================================== */

.rs-featured-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .rs-featured-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.rs-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.rs-videos-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .rs-videos-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.rs-main-video {
    grid-row: 1 / 3;
}

.rs-video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rs-video-card:hover,
.rs-video-card:focus-visible {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.rs-card-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.rs-video-card:hover .rs-card-thumb img {
    transform: scale(1.05);
}

.rs-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.rs-card-title {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rs-main-video .rs-card-title {
    font-size: 22px;
}

.rs-play-btn .rs-play-bg {
    fill: #ff0000;
    opacity: .92;
    transition: fill .25s, opacity .25s;
}

.rs-play-btn .rs-play-icon {
    fill: #fff;
}

.rs-video-card:hover .rs-play-btn {
    transform: translate(-50%, -50%) scale(1.14);
}

.rs-video-card:hover .rs-play-btn .rs-play-bg {
    fill: #cc0000;
    opacity: 1;
}

.rs-yt-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 14px 7px 12px;
    z-index: 3;
}

.rs-yt-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: none !important;
}

.rs-yt-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rs-yt-views,
.rs-yt-share {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.rs-yt-share {
    cursor: pointer;
    transition: color .22s;
}

.rs-yt-share:hover {
    color: #fff;
}

.rs-card-glass {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-top: 1px solid rgba(255, 255, 255, .7);
}

.rs-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rs-reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2ad29, #e05a00);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.rs-reviewer-name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--main-color);
}

.rs-reviewer-sub {
    margin: 0;
    font-size: 12px;
    color: #888;
}

.rs-card-desc {
    margin: 0;
    font-size: 13.5px;
    color: #444;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rs-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.rs-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--second-color);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(242, 173, 41, .38);
    transition: background .28s, transform .28s, box-shadow .28s;
    letter-spacing: .02em;
}

.rs-more-btn:hover {
    background: #d4940f;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242, 173, 41, .5);
    color: #fff !important;
}

.rs-more-btn i {
    transition: transform .28s;
}

.rs-more-btn:hover i {
    transform: translateX(5px);
}

/* ==============================================
   Video Modal
============================================== */
.rs-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rs-modal[hidden] {
    display: none !important;
}

.rs-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    animation: rsFadeIn .3s ease;
}

.rs-modal-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: rsSlideUp .38s cubic-bezier(.2, .8, .2, 1);
    z-index: 1;
}

.rs-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f1f1;
    border: none;
    color: var(--main-color);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .22s, transform .22s;
}

.rs-modal-close:hover {
    background: rgba(220, 20, 20, 0.9);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

.rs-modal-title {
    color: var(--main-color);
    font-size: 15px;
    font-weight: 600;
    padding: 16px 56px 10px 20px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rs-modal-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.rs-modal-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes rsFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes rsSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(.97)
    }

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

/* ==============================================
   Play Button
============================================== */

.rs-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 4;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.rs-play-btn svg {
    width: 64px;
    height: auto;
}

.rs-video-card:hover .rs-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

/* ==============================================
   Card Thumb Image
============================================== */
/* =========================================
   Client Videos
========================================= */

.client-videos-section {
    width: 100%;
    padding: 35px 0 20px;
    /* background: #fff; */
}

.client-videos-container {
    width: min(1282px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================================
   Video Card
========================================= */

.client-video-card {
    position: relative;

    width: 100%;
    height: 200px;

    overflow: hidden;

    border-radius: 15px;

    cursor: pointer;

    background: #eee;
}

.client-video-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* =========================================
   Overlay
========================================= */

.video-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.25);

    transition: background 0.3s ease;
}


/* =========================================
   Play Button
========================================= */

.video-play-btn {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #fff;

    color: #e3293f;

    font-size: 20px;

    cursor: pointer;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

.video-play-btn i {
    margin-left: 3px;
}


/* =========================================
   Hover
========================================= */

.client-video-card:hover img {
    transform: scale(1.06);
}

.client-video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.38);
}

.client-video-card:hover .video-play-btn {
    transform: scale(1.1);
}


/* =========================================
   Find More
========================================= */

.client-videos-action {
    display: flex;
    justify-content: center;

    margin-top: 25px;
}

.client-videos-btn {
    width: 200px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: #292366;
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.client-videos-btn:hover {
    background: #e8b54b;
    color: #fff;

    transform: translateY(-2px);
}


/* =========================================
   Video Modal
========================================= */

.video-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   Modal Overlay
========================================= */

.video-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.82);

    cursor: pointer;
}


/* =========================================
   Modal Content
========================================= */

.video-modal-content {
    position: relative;

    z-index: 2;

    width: min(900px, 95vw);

    transform: scale(0.9);

    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}


/* =========================================
   Video
========================================= */

.video-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 10px;

    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: none;
}


/* =========================================
   Close
========================================= */

.video-modal-close {
    position: absolute;

    top: -45px;
    right: 0;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #292366;

    font-size: 18px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #e8b54b;
    color: #fff;
}


/* =========================================
   Body Lock
========================================= */

body.video-modal-open {
    overflow: hidden;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .client-videos-container {
        gap: 20px;
    }

    .client-video-card {
        height: 180px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .client-videos-section {
        padding: 25px 0 20px;
    }

    .client-videos-container {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .client-video-card {
        height: 210px;
    }

    .client-videos-action {
        margin-top: 20px;
    }

    .video-modal {
        padding: 15px;
    }

    .video-modal-close {
        top: -48px;
    }

}

/* =========================
   VARIABLES
========================= */

:root {
    --navy: #171d3a;
    --navy-light: #252d52;
    --gold: #e5b64b;
    --gold-dark: #c99b32;

    --white: #ffffff;
    --off-white: #faf9f5;

    --text: #687087;
    --border: #e8e8e8;

    --radius: 24px;
}


/* =========================
   SECTION
========================= */

.travel-stories-section {
    position: relative;
    padding: 30px 0;
    background: var(--off-white);
    overflow: hidden;
}


/* subtle decorative background */

.travel-stories-section::before {
    content: "";
    position: absolute;

    width: 400px;
    height: 400px;

    top: -200px;
    left: -200px;

    border-radius: 50%;

    background: rgba(229, 182, 75, 0.07);

    pointer-events: none;
}

.travel-stories-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -150px;
    right: -150px;

    border-radius: 50%;

    border: 1px solid rgba(229, 182, 75, 0.12);

    pointer-events: none;
}


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

.travel-stories-section .container {
    width: min(1380px, calc(100% - 80px));
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =========================
   HEADER
========================= */

.stories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 45px;
}


.section-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold);
}


.stories-header h2 {
    margin: 0;
    line-height: 1.1;
    font-size: clamp(28px, 3.5vw, 43px);
    font-weight: 700;
    color: var(--main-color);
}


.stories-header h2 span {
    color: var(--gold);
}


.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border: 1px solid var(--navy);
    border-radius: 50px;
    color: var(--navy);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .3s ease;
}


.view-all-btn i {
    transition: .3s ease;
}


.view-all-btn:hover {
    background: var(--navy);
    color: white !important;
}


.view-all-btn:hover i {
    transform: translateX(5px);
}


/* =========================
   GRID
========================= */

.stories-grid {

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 24px;

    align-items: stretch;
}


/* =========================
   LEFT COLUMN
========================= */

.stories-column {

    display: flex;

    flex-direction: column;

    gap: 24px;
}


/* =========================
   GENERAL CARD
========================= */

.story-card {
    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--white);

    border: 1px solid rgba(23, 29, 58, .07);

    box-shadow:
        0 8px 25px rgba(23, 29, 58, .06);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.story-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(23, 29, 58, .12);
}


/* =========================
   SMALL CARDS
========================= */

.story-small {

    display: grid;

    grid-template-columns: 150px 1fr;

    min-height: 167px;

    padding: 8px;

    gap: 18px;
}


.story-small .story-image {

    position: relative;

    width: 174px;

    height: 158px;

    overflow: hidden;

    border-radius: 18px;
}


.story-small .story-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.story-small:hover .story-image img {

    transform: scale(1.08);
}


/* =========================
   DATE
========================= */

.story-date {

    position: absolute;

    top: 3px;

    left: 2px;

    width: 54px;

    overflow: hidden;

    border-radius: 13px;

    background: white;

    text-align: center;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .12);

    z-index: 5;
}


.story-date strong {

    display: block;

    padding: 7px 5px 3px;

    color: var(--navy);

    font-size: 20px;

    line-height: 1;

    font-weight: 800;
}


.story-date span {

    display: block;

    padding: 6px 4px;

    background: var(--navy);

    color: white;

    font-size: 11px;

    font-weight: 600;
}


/* =========================
   STORY CONTENT
========================= */

.story-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;
}


.story-author {

    display: flex;

    gap: 7px;

    margin-bottom: 7px;

    color: var(--gold-dark);

    font-size: 12px;

    font-weight: 700;

    justify-content: space-between;

    align-items: center;
}


.story-author i {

    font-size: 11px;
}


.story-content h3 {

    margin: 0 0 8px;

    color: var(--navy);

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;
}


.story-content p {

    margin: 0;

    color: var(--text);

    font-size: 13px;

    line-height: 1.6;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


.story-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 10px;

    color: var(--gold-dark);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}


.story-link i {

    transition: .3s ease;
}


.story-link:hover i {

    transform: translateX(5px);
}


/* =========================
   FEATURED CARDS
========================= */

.story-featured {

    height: 535px;

    position: relative;

    background: var(--navy);
}


.story-featured>img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.story-featured:hover>img {

    transform: scale(1.06);
}


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

.featured-overlay {

    position: absolute;

    /* inset: 0; */

    background:
        linear-gradient(to bottom,
            rgba(23, 29, 58, 0) 25%,
            rgba(23, 29, 58, .2) 40%,
            rgba(10, 15, 35, .94) 100%);
}


/* =========================
   FEATURED DATE
========================= */

.featured-date {

    top: 24px;
    left: 24px;
    right: auto;

    width: 58px;
}


.featured-date strong {

    font-size: 23px;

    padding-top: 9px;
}


.featured-date span {

    background: var(--gold);

    color: var(--navy);

    padding: 7px;
}


/* =========================
   FEATURED CONTENT
========================= */

.featured-content {

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    z-index: 4;
}


.story-featured .story-author {

    color: var(--gold);

    font-size: 13px;
}


.featured-content h3 {

    margin: 8px 0 10px;

    color: white;

    font-size: 26px;

    line-height: 1.25;
}


.featured-content p {

    margin: 0;

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

    font-size: 14px;

    line-height: 1.7;

    display: -webkit-box;

    -webkit-line-clamp: 3;
    line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


.featured-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;

    color: var(--gold);

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;
}


.featured-link i {

    transition: .3s ease;
}


.featured-link:hover i {

    transform: translateX(6px);
}


/* =========================
   BOTTOM
========================= */

.stories-bottom {

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    margin-top: 40px;
}


.stories-decoration {

    position: absolute;

    left: 0;

    display: flex;

    gap: 7px;
}


.stories-decoration span {

    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d9dce4;
}


.stories-decoration span:nth-child(2) {

    width: 26px;

    border-radius: 20px;

    background: var(--gold);
}


.stories-main-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 26px;

    border-radius: 50px;

    background: var(--navy);

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: .3s ease;
}


.stories-main-btn i {

    transition: .3s ease;
}


.stories-main-btn:hover {

    background: var(--gold);

    color: var(--navy);
}


.stories-main-btn:hover i {

    transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .stories-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .stories-column {

        grid-column: 1 / -1;

        display: grid;

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

    }


    .story-small {

        display: block;

        padding: 0;

        min-height: auto;

    }


    .story-small .story-image {

        width: 100%;

        height: 180px;

        border-radius: 0;
    }


    .story-small .story-content {

        padding: 18px;
    }


    .story-small .story-date {

        top: 15px;
        right: 15px;
    }

}


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

@media (max-width: 767px) {

    .travel-stories-section {

        padding: 30px 0;

    }


    .travel-stories-section .container {

        width: min(100% - 30px,
                600px);

    }


    .stories-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 30px;

    }


    .stories-header h2 {

        font-size: 30px;

    }


    .view-all-btn {

        padding: 11px 18px;

    }


    .stories-grid {

        display: flex;

        flex-direction: column;

    }


    .stories-column {

        display: flex;

        flex-direction: column;

        gap: 18px;

    }


    .story-small {

        display: grid;

        grid-template-columns: 105px 1fr;

        min-height: 135px;

        padding: 12px;

        gap: 14px;

    }


    .story-small .story-image {

        width: 105px;

        height: 110px;

        border-radius: 14px;

    }


    .story-small .story-content {

        padding: 0;

    }


    .story-content h3 {

        font-size: 15px;

    }


    .story-content p {

        font-size: 12px;

    }


    .story-link {

        display: none;

    }


    .story-featured {

        /* min-height: auto; */

        height: 535px;

    }


    .featured-content {

        left: 20px;

        right: 20px;

        bottom: 22px;

    }


    .featured-content h3 {

        font-size: 24px;

    }


    .featured-content p {

        font-size: 13px;

    }


    .stories-bottom {

        margin-top: 30px;

    }


    .stories-decoration {

        display: none;

    }

}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .story-small {

        grid-template-columns: 90px 1fr;

    }


    .story-small .story-image {

        width: 90px;

        height: 100px;

    }


    .story-content h3 {

        font-size: 14px;

    }


    .story-content p {

        -webkit-line-clamp: 2;
        line-clamp: 2;

    }

}



/* =========================================
   EXPERIENCE SECTION
========================================= */

:root {

    --navy: #171d3a;
    --navy-2: #202746;

    --gold: #e5b64b;
    --gold-dark: #c99c35;

    --cream: #faf9f5;
    --white: #ffffff;

    --text: #6b7280;
}


/* =========================================
   SECTION
========================================= */

.experience-section {

    position: relative;

    padding: 30px 0;

    background: var(--cream);

    overflow: hidden;
}


/* Decorative background */

.experience-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -300px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(229, 182, 75, .15);

}


.experience-section::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -130px;
    bottom: -130px;

    border-radius: 50%;

    background:
        rgba(229, 182, 75, .06);

}


/* =========================================
   HEADER
========================================= */

.experience-header {

    position: relative;

    z-index: 2;

    margin-bottom: 45px;
}


.experience-label {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.experience-title {

    margin: 0;

    color: var(--navy);

    font-size: clamp(28px, 3.5vw, 43px);

    line-height: 1.05;

    font-weight: 700;
}


.experience-title span {

    color: var(--gold);
}


.experience-intro {

    max-width: 430px;

    margin:
        0 0 5px auto;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   CARD
========================================= */

.experience-card {

    position: relative;

    display: block;

    height: 316px;

    overflow: hidden;

    border-radius: 24px;

    text-decoration: none;

    background: var(--navy);

    box-shadow:
        0 12px 30px rgba(23, 29, 58, .08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}


.experience-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 25px 50px rgba(23, 29, 58, .18);
}


/* =========================================
   IMAGE
========================================= */

.experience-image {

    position: absolute;

    inset: 0;

    overflow: hidden;
}


.experience-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2, .7, .2, 1);
}


.experience-card:hover .experience-image img {

    transform:
        scale(1.12);
}


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

.experience-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(23, 29, 58, .05) 10%,
            rgba(23, 29, 58, .25) 35%,
            rgba(13, 18, 40, 0.308) 100%);

    transition:
        background .4s ease;
}


.experience-card:hover .experience-overlay {

    background:
        linear-gradient(to bottom,
            rgba(23, 29, 58, .1),
            rgba(23, 29, 58, .88) 60%,
            rgba(13, 18, 40, 1));
}


/* =========================================
   NUMBER
========================================= */

.experience-number {

    position: absolute;

    top: 22px;

    left: 22px;

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


    font-size: 15px;

    letter-spacing: 2px;
}


.experience-number::after {

    content: "";

    display: block;

    width: 28px;

    height: 2px;

    margin-top: 7px;

    background: var(--gold);
}


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

.experience-content {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 3;
}


.experience-small-title {

    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.experience-content h3 {

    margin: 0;

    color: white;



    font-size: 27px;

    line-height: 1.05;

    font-weight: 700;
}


/* =========================================
   BOTTOM
========================================= */

.experience-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 9px;

    padding-top: 15px;

    border-top:
        1px solid rgba(255, 255, 255, .18);

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

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================
   ARROW
========================================= */

.experience-arrow {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    font-size: 12px;

    transform:
        rotate(0deg);

    transition:
        transform .4s ease,
        background .3s ease;
}


.experience-card:hover .experience-arrow {

    transform:
        rotate(45deg);

    background: white;
}


/* =========================================
   FOOTER
========================================= */

.experience-footer {

    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 45px;
}


.experience-line {

    flex: 1;

    height: 1px;

    background:
        #dedfdc;
}


.all-experiences {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition: color .3s ease;
}


.all-experiences i {

    color: var(--gold-dark);

    transition:
        transform .3s ease;
}


.all-experiences:hover {

    color: var(--gold-dark);
}


.all-experiences:hover i {

    transform:
        translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .experience-card {

        height: 430px;

    }


    .experience-content h3 {

        font-size: 27px;

    }

}


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

@media (max-width: 767px) {

    .experience-section {

        padding: 30px 0;

    }


    .experience-header {

        margin-bottom: 30px;

    }


    .experience-title {

        font-size: 42px;

    }


    .experience-intro {

        margin:
            20px 0 0;

        font-size: 13px;

    }


    .experience-card {

        height: 400px;

        border-radius: 20px;

    }


    .experience-content h3 {

        font-size: 29px;

    }


    .experience-footer {

        margin-top: 30px;

    }

}


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

@media (max-width: 400px) {

    .experience-title {

        font-size: 36px;

    }


    .experience-card {

        height: 289px;

    }

}

/* Newsletter ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Egypt Postcard Concept */
/* Newsletter — Egypt Horizon */
.nl-horizon {
    position: relative;
    padding: 33px 0;
    overflow: hidden;
    max-width: 1320px;
    padding-right: 31px;
    padding-left: 31px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 23px;
}

.nl-horizon__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nl-horizon__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: saturate(.6) contrast(1.1);
}

.nl-horizon__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11, 16, 32, .93) 0%, rgba(11, 16, 32, .82) 55%, rgba(11, 16, 32, .55) 100%);
}

.nl-horizon__glyphs {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
    font-size: clamp(60px, 8vw, 120px);
    letter-spacing: .2em;
    color: rgba(227, 183, 94, .06);
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    white-space: nowrap;
}

.nl-horizon__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.nl-horizon__left {
    color: #fff;
}

.nl-horizon__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: var(--second-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.nl-horizon__line {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--second-color);
}

.nl-horizon__title {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(30px, 3.8vw, 50px);
    line-height: 1.1;
    letter-spacing: -.03em;
}

.nl-horizon__title em {
    color: var(--second-color);
    font-style: italic;
}

.nl-horizon__sub {
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    line-height: 1.7;
    max-width: 460px;
}

.nl-horizon__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nl-horizon__field {
    display: flex;
    align-items: center;
    padding: 7px 7px 7px 20px;
    border: 1px solid rgba(227, 183, 94, .25);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
    transition: border-color .3s, box-shadow .3s;
}

.nl-horizon__field:focus-within {
    border-color: rgba(227, 183, 94, .7);
    box-shadow: 0 0 0 3px rgba(227, 183, 94, .1);
}

.nl-horizon__field>i {
    color: var(--second-color);
    font-size: 16px;
    padding-right: 14px;
    flex-shrink: 0;
}

.nl-horizon__field input[type="email"] {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    padding: 12px 10px;
    transform: none;
}

.nl-horizon__field input[type="email"]::placeholder {
    color: rgba(255, 255, 255, .45);
}

.nl-horizon__field input[type="email"]:focus {
    border: 0;
    box-shadow: none;
    color: #fff;
    transform: none;
}

.nl-horizon__field button {
    flex-shrink: 0;
    padding: 12px 24px;
    border: 0;
    border-radius: 10px;
    background: var(--second-color);
    color: #0b1020;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: background .3s, transform .3s;
}

.nl-horizon__field button:hover {
    background: #f0ca7b;
    transform: translateY(-2px);
}

.nl-horizon__note {
    margin: 0;
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}

.nl-horizon__note i {
    margin-right: 6px;
    color: var(--second-color);
}

.nl-horizon__right {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.nl-horizon__benefit {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(227, 183, 94, .14);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(8px);
    transition: border-color .3s, background .3s;
}

.nl-horizon__benefit:hover {
    border-color: rgba(227, 183, 94, .35);
    background: rgba(227, 183, 94, .07);
}

.nl-horizon__benefit-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(227, 183, 94, .15);
    color: var(--second-color);
    font-size: 18px;
}

.nl-horizon__benefit strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.nl-horizon__benefit p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.5;
}

.nl-horizon__badge {
    position: absolute;
    top: -28px;
    right: -12px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--second-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    box-shadow: 0 8px 32px rgba(227, 183, 94, .4);
}

.nl-horizon__badge strong {
    color: #0b1020;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.nl-horizon__badge span {
    color: #0b1020;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.nl-horizon__badge p {
    margin: 0;
    color: rgba(11, 16, 32, .65);
    font-size: 9px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .nl-horizon__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nl-horizon__badge {
        top: -20px;
        right: 0;
    }
}

@media (max-width: 576px) {
    .nl-horizon {
        padding: 72px 0;
    }

    .nl-horizon__field {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px;
    }

    .nl-horizon__field button {
        width: 100%;
        justify-content: center;
    }

    .nl-horizon__glyphs {
        display: none;
    }
}

/* Curated Packages ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Editorial Travel Collection */
.curated-tours {
    padding: 30px 0;
    background: #fff;
}

.curated-tours__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 46px;
}

.curated-tours__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px;
    color: #b88932;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.curated-tours__eyebrow span {
    width: 40px;
    height: 1px;
    background: #b88932;
}

.curated-tours__header h2 {
    color: #10243c;
    font-size: clamp(28px, 3.5vw, 43px);
    line-height: .98;
    letter-spacing: -.035em;
}

.curated-tours__header h2 em {
    color: #c89943;
    font-weight: 400;
}

.curated-tours__intro {
    max-width: 390px;
    padding-bottom: 4px;
}

.curated-tours__intro p {
    margin: 0 0 17px;
    color: #687381;
    font-size: 15px;
    line-height: 1.7;
}

.curated-tours__intro a {
    color: #10243c;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.curated-tours__intro a i {
    margin-left: 9px;
    color: #c89943;
}

.curated-tours__layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 22px;
    min-height: 570px;
}

.tour-feature {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 570px;
    border-radius: 26px;
    color: #fff;
    text-decoration: none;
}

.tour-feature>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.tour-feature:hover>img {
    transform: scale(1.045);
}

.tour-feature__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 23, 39, .12) 25%, rgba(7, 23, 39, .88) 100%);
}

.tour-feature__top {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-feature__top b {
    padding: 9px 13px;
    border-radius: 20px;
    background: #e3b75e;
    color: #10243c;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tour-feature__top>i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(16, 36, 60, .28);
    backdrop-filter: blur(8px);
}

.tour-feature__content {
    position: absolute;
    left: 38px;
    right: 38px;
    bottom: 34px;
}

.tour-feature__meta {
    display: flex;
    gap: 9px;
    margin-bottom: 15px;
}

.tour-feature__meta b {
    padding: 7px 11px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
    font-size: 11px;
}

.tour-feature__meta i {
    color: #e3b75e;
    margin-right: 4px;
}

.tour-feature__content>strong {
    display: block;
    color: #fff;
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.08;
}

.tour-feature__content>small {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    letter-spacing: .05em;
}

.tour-feature__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .24);
    font-size: 12px;
}

.tour-feature__bottom b {
    color: #e3b75e;
    font-size: 20px;
}

.tour-feature__bottom>i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #10243c;
}

.curated-tours__list {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 14px;
}

.tour-row {
    display: grid;
    grid-template-columns: 175px 1fr 44px;
    align-items: center;
    gap: 23px;
    padding: 13px 18px 13px 13px;
    border: 1px solid #e8e5df;
    border-radius: 20px;
    background: #faf9f6;
    color: #10243c;
    text-decoration: none;
}

.tour-row:hover {
    border-color: rgba(200, 153, 67, .65);
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 36, 60, .09);
    transform: translateY(-3px);
}

.tour-row__image {
    position: relative;
    height: 100%;
    min-height: 145px;
    overflow: hidden;
    border-radius: 13px;
}

.tour-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-row__image>b {
    position: absolute;
    left: 9px;
    bottom: 9px;
    padding: 5px 8px;
    border-radius: 5px;
    background: #10243c;
    color: #fff;
    font-size: 9px;
}

.tour-row__body {
    min-width: 0;
}

.tour-row__body>small {
    display: block;
    margin-bottom: 9px;
    color: #b88932;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tour-row__body>strong {
    display: block;
    color: #10243c;
    font-size: 19px;
    line-height: 1.2;
}

.tour-row__body>span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #7b838d;
    font-size: 11px;
}

.tour-row__body>span b:last-child {
    color: #10243c;
    font-size: 14px;
}

.tour-row__body>span i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c89943;
}

.tour-row__arrow {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd9d2;
    border-radius: 50%;
    color: #10243c;
}

.tour-row:hover .tour-row__arrow {
    border-color: #10243c;
    background: #10243c;
    color: #fff;
}

.curated-tours__trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
    padding: 25px 0 0;
    border-top: 1px solid #e8e5df;
}

.curated-tours__trust>span {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    color: #87909a;
    font-size: 11px;
}

.curated-tours__trust>span+span {
    padding-left: 28px;
    border-left: 1px solid #e8e5df;
}

.curated-tours__trust i {
    grid-row: 1 / 3;
    align-self: center;
    color: #c89943;
    font-size: 22px;
}

.curated-tours__trust b {
    color: #10243c;
    font-size: 13px;
}

@media (max-width: 1199px) {
    .curated-tours__layout {
        grid-template-columns: .9fr 1.1fr;
    }

    .tour-row {
        grid-template-columns: 135px 1fr 40px;
        gap: 17px;
    }
}

@media (max-width: 991px) {
    .curated-tours__layout {
        grid-template-columns: 1fr;
    }

    .tour-feature {
        min-height: 540px;
    }

    .curated-tours__list {
        grid-template-rows: none;
    }

    .tour-row {
        min-height: 175px;
    }

    .curated-tours__trust {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .curated-tours__trust>span+span {
        padding: 17px 0 0;
        border-left: 0;
        border-top: 1px solid #e8e5df;
    }
}

@media (max-width: 576px) {
    .curated-tours {
        padding: 30px 0;
    }

    .curated-tours__header {
        display: block;
        margin-bottom: 32px;
    }

    .curated-tours__header h2 {
        font-size: 30px;
    }

    .curated-tours__intro {
        margin-top: 24px;
    }

    .tour-feature {
        min-height: 490px;
        border-radius: 20px;
    }

    .tour-feature__content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .tour-row {
        grid-template-columns: 105px 1fr;
        gap: 14px;
        padding: 10px;
    }

    .tour-row__image {
        min-height: 125px;
    }

    .tour-row__body>strong {
        font-size: 16px;
    }

    .tour-row__body>span {
        flex-wrap: wrap;
        margin-top: 11px;
    }

    .tour-row__arrow {
        display: none;
    }
}

/* Four-column package grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px 22px;
}

.package-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(7, 55, 99, 0.07);
    box-shadow: 0 4px 20px #343a405c;
    transition: transform 0.35s cubic-bezier(.34, 1.4, .64, 1), box-shadow 0.35s ease;
}

.package-card>a {
    display: block;
    height: 100%;
    color: #10243c;
    text-decoration: none;
}

.package-card__image {
    position: relative;
    height: 252px;
    overflow: hidden;
    border-radius: 20px;
    background: #eae7e1;
}

.package-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 24, 40, .18), transparent 38%, rgba(8, 24, 40, .38));
    pointer-events: none;
}

.package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s var(--ease);
}

.package-card:hover .package-card__image img {
    transform: scale(1.055);
}

.package-card__image>span {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #10243c;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.package-card__image>button {
    position: absolute;
    z-index: 3;
    top: 13px;
    right: 13px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #10243c;
    cursor: pointer;
}

.package-card__image>button:hover {
    background: #e3b75e;
    transform: scale(1.06);
}

.package-card__image>b {
    position: absolute;
    z-index: 2;
    left: 16px;
    bottom: 14px;
    padding: 7px 10px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .94);
    color: #10243c;
    font-size: 12px;
    text-transform: uppercase;
}

.package-card__body {
    padding: 18px 12px 10px;
}

.package-card__body>p {
    margin: 0 0 7px;
    overflow: hidden;
    color: #a5782c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.package-card__body h3 {
    min-height: 49px;
    margin: 0;
    color: #10243c;
    font-size: 20px;
    line-height: 1.24;
    height: 75px;
}

.package-card__body>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 7px;
    padding-top: 8px;
    border-top: 1px solid #e9e5df;
    color: #858c95;
    font-size: 13px;
}

.package-card__body>div strong {
    margin-left: 4px;
    color: #10243c;
    font-size: 17px;
}

.package-card__body>div span:last-child {
    color: #10243c;
    font-weight: 700;
}

.package-card__body>div span:last-child i {
    margin-right: 4px;
    color: #e3b75e;
}

.package-card:hover .package-card__body h3 {
    color: #b88932;
}

@media (max-width: 991px) {
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .package-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .package-card__image {
        height: 202px;
    }

    .package-card__body h3 {
        min-height: auto;
    }
}

/* Best Day Tours Ã¢â‚¬â€ One Day, One Story */
.day-tours {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background: #f7f4ee;
}

/* .day-tours::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(227, 183, 94, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(227, 183, 94, .025), 0 0 0 140px rgba(227, 183, 94, .018);
} */

.day-tours__heading {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 45px;
    margin-bottom: 48px;
}

.day-tours__kicker {
    margin: 0 0 13px;
    color: #e3b75e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.day-tours__heading h2 {
    color: #fff;
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -.035em;
    color: #10243c;
    font-size: clamp(28px, 3.5vw, 43px);
    line-height: .98;
    letter-spacing: -.035em;
}

.day-tours__heading h2 em {
    color: #e3b75e;
    font-weight: 400;
}

.day-tours__heading>p {
    max-width: 470px;
    margin: 0 0 5px;
    color: rgba(255, 255, 255, .64);
    font-size: 15px;
    line-height: 1.75;
}

.day-tours__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.day-ticket {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .14);
}

.day-ticket:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .24);
}

.day-ticket__image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 235px;
    flex: 0 0 235px;
}

.day-ticket__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 36, 60, .04) 35%, rgba(16, 36, 60, .58));
}

.day-ticket__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(16, 36, 60, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.day-ticket:hover .day-ticket__overlay {
    opacity: 1;
    visibility: visible;
}

.day-ticket__overlay p {
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    max-height: 100%;
    overflow-y: auto;
}

.day-ticket__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s var(--ease);
    object-fit: cover;
    transition: transform .75s var(--ease);
}

.day-ticket:hover .day-ticket__image img {
    transform: scale(1.06);
}

.day-ticket__image>span {
    position: absolute;
    z-index: 2;
    top: 17px;
    left: 17px;
    padding: 7px 10px;
    border-radius: 6px;
    background: #e3b75e;
    color: #10243c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.day-ticket__image>b {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 9px;
    color: rgba(255, 255, 255, .72);
    font-size: 42px;
    font-weight: 400;
}

.day-ticket__content {
    display: flex;
    min-height: 270px;
    flex: 1;
    flex-direction: column;
    padding: 25px 22px 20px;
}

.day-ticket__meta {
    display: flex;
    gap: 14px;
    color: #77818d;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.day-ticket__meta i {
    margin-right: 5px;
    color: #b88932;
}

.day-ticket__content h3 {
    margin: 17px 0 16px;
    font-size: 20px;
    line-height: 1.44;
}

.day-ticket__content h3 a {
    color: #10243c;
    text-decoration: none;
}

.day-ticket__content h3 a:hover {
    color: #b88932;
}

.day-ticket__route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: #8a929b;
    font-size: 9px;
}

.day-ticket__route i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d0a452;
}

.day-ticket__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed #dedad3;
    color: #89909a;
    font-size: 10px;
}

.day-ticket__footer strong {
    margin-left: 4px;
    color: #10243c;
    font-size: 20px;
}

.day-ticket__footer>a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #10243c;
    color: #fff;
    text-decoration: none;
}

.day-ticket:hover .day-ticket__footer>a {
    background: #e3b75e;
    color: #10243c;
}

.day-tours__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.day-tours__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .54);
    font-size: 12px;
}

.day-tours__bottom p i {
    margin-right: 7px;
    color: #e3b75e;
}

.day-tours__bottom>a {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.day-tours__bottom>a i {
    margin-left: 8px;
    color: #e3b75e;
}

@media (max-width: 991px) {
    .day-tours__heading {
        display: block;
    }

    .day-tours__heading>p {
        margin-top: 22px;
    }

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

@media (max-width: 576px) {
    .day-tours {
        padding: 30px 0;
    }

    .day-tours__heading h2 {
        font-size: 30px;
    }

    .day-tours__grid {
        grid-template-columns: 1fr;
    }

    .day-ticket__image {
        min-height: 240px;
    }

    .day-ticket__content {
        min-height: 260px;
        padding: 25px 22px 20px;
    }

    .day-tours__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
}

/* Day tours visual refinement */
.day-tours {
    /* padding: clamp(70px, 7vw, 105px) 0; */
    background: linear-gradient(180deg, #f8f5ef 0%, #fff 100%);
}

/* .day-tours::before {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 4px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, #10243c 0 32%, #e3b75e 32% 68%, #10243c 68%);
    box-shadow: none;
} */

/* Why Choose Us Section - Modern Egyptian Design */
.why-choose-section {
    padding: 30px 0;
    background: radial-gradient(circle at 8% 16%, rgba(217, 170, 78, .11) 0 2px, #fbf8f2 3px), linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
    position: relative;
    overflow: hidden;
    color: #4e5c69;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 0 L100 50 L50 100 L0 50 Z" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="0.5"/></svg>');
    background-size: 80px 80px;
    opacity: 0.3;
}

.why-choose__heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.why-choose__heading h2 {
    /* color: #ffd700; */
    /* font-size: clamp(28px, 4vw, 42px); */
    /* font-weight: 700; */
    /* line-height: 1.2; */
    /* margin-bottom: 15px; */
    /* text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3); */
    max-width: 100%;
    margin: 0 0 24px;
    color: var(--about-navy);
    font-size: clamp(31px, 2.2vw, 40px);
    font-weight: 750;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.why-choose__subtitle {
    /* color: rgba(255, 255, 255, 0.85); */
    /* font-size: 16px; */
    /* line-height: 1.6; */
    /* max-width: 600px; */
    /* margin: 0 auto; */
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .why-choose__grid {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .why-choose__grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .why-choose__grid {
        grid-template-columns: 1fr;
    }
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.why-choose-card:hover::before {
    transform: translateX(100%);
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.why-choose__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #cca446 0%, #fad177 100%);
    color: #000;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose__icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

.why-choose-card h3 {
    color: #10243c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.why-choose-card p {
    /* color: rgba(255, 255, 255, 0.8); */
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose__heading h2 {
        font-size: 24px;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .why-choose__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .why-choose-card h3 {
        font-size: 16px;
    }

    .why-choose-card p {
        font-size: 13px;
    }
}

.day-tours__kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #a97929;
}

.day-tours__kicker::before {
    content: "";
    width: 36px;
    height: 1px;
    background: #a97929;
}

.day-tours__heading h2 {
    color: #10243c;
}

.day-tours__heading h2 em {
    color: #b88932;
}

.day-tours__heading>p {
    color: #66717d;
}

.day-ticket {
    position: relative;
    border: 1px solid #e7e1d7;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(16, 36, 60, .07);
}

.day-ticket::before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #e3b75e;
    transition: width .45s var(--ease);
}

.day-ticket:hover {
    border-color: rgba(184, 137, 50, .45);
    box-shadow: 0 22px 48px rgba(16, 36, 60, .13);
}

.day-ticket:hover::before {
    width: 100%;
}

.day-ticket__image>span {
    border-radius: 20px;
    background: rgba(16, 36, 60, .94);
    color: #fff;
}

.day-ticket__image>b {
    right: 14px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(16, 36, 60, .32);
    color: #fff;
    font-size: 11px;
    backdrop-filter: blur(7px);
}

.day-ticket__footer {
    align-items: center;
    border-top: 1px solid #ebe6de;
}

.day-ticket__footer>a {
    border: 1px solid #dcd6cc;
    background: #fff;
    color: #10243c;
}

.day-ticket:hover .day-ticket__footer>a {
    border-color: #e3b75e;
    background: #e3b75e;
}

.day-tours__bottom p {
    color: #7a838d;
}

.day-tours__bottom p i {
    color: #b88932;
}

.day-tours__bottom>a {
    padding-bottom: 4px;
    border-bottom: 1px solid #d5ac5b;
    color: #10243c;
}

.day-tours__bottom>a i {
    color: #b88932;
}

/* Day tour card redesign */
.day-ticket {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0 0 18px 18px;
    background: transparent;
    box-shadow: none;
}

.day-ticket::before {
    display: none;
}

.day-ticket:hover {
    border-color: transparent;
    box-shadow: none;
    transform: translateY(-6px);
}

.day-ticket__image {
    z-index: 1;
    height: 205px;
    flex-basis: 224px;
    margin: 0 10px -34px;
    overflow: hidden;
    border-radius: 21px;
    box-shadow: 0 14px 30px rgba(16, 36, 60, .16);
}

.day-ticket__image::after {
    background: linear-gradient(180deg, rgba(16, 36, 60, .04) 35%, rgba(16, 36, 60, .58));
}

.day-ticket__image>span {
    top: auto;
    bottom: 16px;
    left: 16px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(16, 36, 60, .66);
    backdrop-filter: blur(8px);
}

.day-ticket__image>b {
    top: 15px;
    right: 15px;
    bottom: auto;
    width: 80px;
    height: 34px;
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .9);
    color: #10243c;
    font-size: 15px;
    border-radius: 20px;
}

.day-ticket__content {
    position: relative;
    min-height: 190px;
    padding: 32px 22px 0;
    border: 1px solid #e6dfd4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(16, 36, 60, .08);
}

.day-ticket__meta {
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee9e1;
}

.day-ticket__meta span {
    display: inline-flex;
    align-items: center;
}

.day-ticket__meta i {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    margin-right: 6px;
    border-radius: 50%;
    background: #f7f1e5;
    color: #a97929;
}

.day-ticket__content h3 {
    height: 72px;
    margin: 19px 0 0;
    font-size: 17px;
}

.day-ticket__route {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 5px;
    padding: 10px 9px;
    border-radius: 8px;
    background: #f8f6f1;
    color: #6f7984;
}

.day-ticket__route span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.day-ticket__route i {
    flex: 0 0 3px;
}

.day-ticket__footer {
    margin: 6px -22px 0;
    padding: 16px 18px;
    border: 0;
    border-radius: 0 0 17px 17px;
    background: #212529;
    color: #212529;
    font-size: 17px;
    background: rgba(0, 0, 0, 0.125);
    backdrop-filter: blur(10px);
    border: 1px solid #10243c1f;
}

.day-ticket__footer>a {
    width: 35px;
    height: 35px;
    border-color: #10243c;
    background: #10243c;
    color: #fff;
}

.day-ticket:hover .day-ticket__footer>a {
    border-color: #e3b75e;
    background: #e3b75e;
    color: #10243c;
    transform: translateX(3px);
}

.day-ticket:hover .day-ticket__content {
    border-color: rgba(184, 137, 50, .5);
    box-shadow: 0 20px 46px rgba(16, 36, 60, .13);
}

@media (max-width: 576px) {
    .day-ticket__image {
        height: 280px;
        min-height: 166px;
        flex-basis: 180px;
    }

    .day-ticket__content {
        min-height: 194px;
    }
}

.arrow {
    border-radius: 50%;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-color: #10243c;
    background: #10243c;
    color: #fff;
}

/* Package card links and quote actions */
.package-card>a.package-card__image {
    display: block;
    height: 290px;
    color: inherit;
    text-decoration: none;
}

.package-card>a.package-card__image>.package-card__image {
    height: 100%;
}

.package-card__body h3 a {
    color: #10243c;
    text-decoration: none;
}

.package-card__body h3 a:hover {
    color: #b88932;
}

.package-card__body .destSlug__price {
    color: #10243c;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.package-card__body .destSlug__price:hover {
    color: #b88932;
}

.package-card__body .arrow {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ded9d0;
    border-radius: 50%;
    /* color: #10243c; */
    text-decoration: none;
}

.package-card__body .arrow:hover {
    border-color: #10243c;
    background: #10243c;
    color: #fff;
}

@media (max-width: 576px) {
    .package-card>a.package-card__image {
        height: 330px;
    }
}

/* Valid package-card wrapper (prevents nested links) */
.package-card__inner {
    display: block;
    height: 100%;
    color: #10243c;
}

/* Floating Tripadvisor rating */
.tripadvisor-float {
    position: relative;
    width: 56px;
    height: 56px;
}

.tripadvisor-float::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -45px;
    left: 100%;
    width: 16px;
    height: 101px;
}

.tripadvisor-float__trigger {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #34e0a1;
    color: #10243c;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 9px 26px rgba(16, 36, 60, .2);
}

/* .tripadvisor-float__trigger:hover,
.tripadvisor-float:focus-within .tripadvisor-float__trigger,
.tripadvisor-float.is-open .tripadvisor-float__trigger {
    background: #10243c;
    color: #fff;
    transform: scale(1.05);
} */
.tripadvisor-float__trigger svg {
    width: 50px;
    height: 39px;
}

.tripadvisor-float__panel {
    position: absolute;
    z-index: 2;
    left: calc(100% + 12px);
    bottom: 0;
    width: 365px;
    padding: 13px;
    visibility: hidden;
    border: 1px solid #e3ddd3;
    border-radius: 14px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 18px 50px rgba(16, 36, 60, .2);
    transform: translateX(-10px) scale(.97);
    transform-origin: left bottom;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .18s;
}

.tripadvisor-float__panel::before {
    content: "";
    position: absolute;
    left: -7px;
    bottom: 19px;
    width: 14px;
    height: 14px;
    border-bottom: 1px solid #e3ddd3;
    border-left: 1px solid #e3ddd3;
    background: #fff;
    transform: rotate(45deg);
}

.tripadvisor-float:hover .tripadvisor-float__panel,
.tripadvisor-float:focus-within .tripadvisor-float__panel,
.tripadvisor-float.is-open .tripadvisor-float__panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    transition-delay: 0s;
}

.tripadvisor-float__panel .cdsROWContainer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 105px 1fr auto;
    align-items: center;
    gap: 12px;
    min-height: 52px;
}

.tripadvisor-float__panel .logo img {
    display: block;
    width: 105px;
    height: auto;
}

.tripadvisor-float__panel .cdsLocName {
    max-width: none !important;
    line-height: 1.25;
}

.tripadvisor-float__panel .cdsLocName a {
    color: #10243c;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.tripadvisor-float__panel .cdsRating {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #717a84;
    font-size: 10px;
    white-space: nowrap;
}

.tripadvisor-float__panel .ui_bubble_rating {
    display: block;
    width: 70px;
    height: 13px;
    background: radial-gradient(circle, #00aa6c 0 4px, transparent 4.5px) 0 center / 14px 14px repeat-x;
}

@media (max-width: 760px) {
    .tripadvisor-float__panel {
        position: fixed;
        right: 15px;
        bottom: 90px;
        left: 15px;
        width: auto;
        transform-origin: center bottom;
    }
}

/* Trip Finder Ã¢â‚¬â€ Your Journey Starts Here */
.trip-finder {
    padding: 30px 0;
    /* background: #f8f5ef; */
}

.trip-finder__shell {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 570px;
    margin-bottom: 72px;
    overflow: visible;
    border-radius: 30px;
    background: #10243c;
    box-shadow: 0 28px 80px rgba(16, 36, 60, .17);
}

.trip-finder__shell::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 15px;
    border: 1px solid rgba(227, 183, 94, .2);
    border-radius: 20px;
    pointer-events: none;
}

.trip-finder__copy {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 68px clamp(46px, 5vw, 82px) 125px;
    align-items: center;
}

.trip-finder__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    color: #e3b75e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.trip-finder__eyebrow span {
    width: 34px;
    height: 1px;
    background: #e3b75e;
}

.trip-finder__copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.02;
    /* letter-spacing: -.04em; */
}

.trip-finder__copy h1 em {
    color: #e3b75e;
    font-weight: 400;
}

.trip-finder__lead {
    max-width: 500px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, .67);
    font-size: 15px;
    line-height: 1.75;
}

.trip-finder__trust {
    display: flex;
    gap: 33px;
}

.trip-finder__trust span {
    display: grid;
    color: rgba(255, 255, 255, .5);

    font-size: 10px;
    letter-spacing: .04em;
}

.trip-finder__trust strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
}

.trip-finder__visual {
    position: relative;
    z-index: 1;
    min-height: 570px;
    overflow: hidden;
    border-radius: 0 30px 30px 150px;
}

.trip-finder__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(16,36,60,.38), transparent 45%), linear-gradient(0deg, rgba(16,36,60,.54), transparent 45%); */
}

.trip-finder__visual>img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* object-position: 64% center; */
}

.trip-finder__visual>p {
    position: absolute;
    z-index: 2;
    right: 35px;
    bottom: 104px;
    margin: 0;
    color: #fff;
    font-size: 12px;
    letter-spacing: .06em;
    text-align: right;
}

.trip-finder__visual>p span {
    display: block;
    color: #e3b75e;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.trip-finder__stamp {
    position: absolute;
    z-index: 3;
    top: 38px;
    right: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 104px;
    height: 104px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(16, 36, 60, .42);
    color: #fff;
    font-size: 9px;
    line-height: 1.25;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    transform: rotate(8deg);
}

.trip-finder__stamp i {
    color: #e3b75e;
}

.trip-finder__stamp b {
    color: #e3b75e;
    font-size: 14px;
}

.trip-planner {
    position: absolute;
    z-index: 999;
    right: 44px;
    bottom: -89px;
    left: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 215px;
    align-items: center;
    min-height: 104px;
    padding: 11px;
    border: 1px solid #e6e0d7;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(16, 36, 60, .18);
}

.trip-planner__field {
    position: relative;
    min-width: 0;
    padding: 5px 15px;
    border-right: 1px solid #e8e3da;
}

.trip-planner__number {
    position: absolute;
    top: -4px;
    right: 20px;
    color: rgba(16, 36, 60, .1);
    font-size: 29px;
    font-weight: 700;
}

.trip-planner__field label {
    position: relative;
    display: block;
    margin-bottom: 1px;
    color: #10243c;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.trip-planner__field label i {
    width: 18px;
    color: #bd8e36;
}

.trip-planner__field select,
.trip-planner__field input {
    width: 100%;
    height: 40px;
    padding: 0 20px 0 0;
    border: 0;
    border-bottom: 1px solid #d9d3c9;
    border-radius: 0;
    outline: 0;
    background-color: transparent;
    color: #2f3439;
    box-shadow: none;
    font-size: 15px;
    transform: none;
}

.trip-planner__field input:focus,
.trip-planner__field select:focus {
    border: 0;
    border-bottom: 1px solid #bd8e36;
    border-radius: 0;
    color: #10243c;
    box-shadow: none;
    transform: none;
}

.trip-planner__submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    margin-left: 20px;
    padding: 0 20px 0 24px;
    border: 0;
    border-radius: 12px;
    background: #10243c;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.trip-planner__submit i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e3b75e;
    color: #10243c;
}

.trip-planner__submit:hover {
    background: #183655;
    transform: translateY(-2px);
}

.trip-planner__submit:hover i {
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .trip-planner {
        grid-template-columns: repeat(3, 1fr) 165px;
        right: 28px;
        left: 28px;
    }

    .trip-planner__field {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (max-width: 991px) {
    .trip-finder {
        padding-bottom: 55px;
    }

    .trip-finder__shell {
        grid-template-columns: 1fr;
        margin-bottom: 0;
    }

    .trip-finder__copy {
        padding: 60px 50px;
    }

    .trip-finder__visual {
        min-height: 390px;
        border-radius: 0 0 30px 110px;
    }

    .trip-finder__visual>p {
        bottom: 30px;
    }

    .trip-planner {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-template-columns: 1fr 1fr;
        margin: 20px;
    }

    .trip-planner__field:nth-child(2) {
        border-right: 0;
    }

    .trip-planner__field:nth-child(3) {
        margin-top: 18px;
    }

    .trip-planner__submit {
        margin-top: 18px;
    }
}

@media (max-width: 576px) {
    .trip-finder {
        padding: 35px 0;
    }

    .trip-finder__shell {
        border-radius: 22px;
    }

    .trip-finder__shell::before {
        inset: 10px;
        border-radius: 14px;
    }

    .trip-finder__copy {
        padding: 50px 27px 38px;
    }

    .trip-finder__copy h1 {
        font-size: 42px;
    }

    .trip-finder__trust {
        gap: 22px;
    }

    .trip-finder__visual {
        min-height: 300px;
        border-radius: 0 0 22px 70px;
    }

    .trip-finder__stamp {
        top: 25px;
        right: 24px;
        width: 86px;
        height: 86px;
        padding: 14px;
    }

    .trip-planner {
        grid-template-columns: 1fr;
        gap: 5px;
        margin: 12px;
        padding: 19px 14px;
    }

    .trip-planner__field {
        padding: 13px 8px;
        border-right: 0;
        border-bottom: 1px solid #eee9e1;
    }

    .trip-planner__field:nth-child(3) {
        margin-top: 0;
    }

    .trip-planner__submit {
        margin: 13px 0 0;
    }
}

/* Custom planner selects */
.custom-select {
    position: relative;
}

.custom-select__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 3px 0 0;
    border: 0;
    border-bottom: 1px solid #d9d3c9;
    border-radius: 0;
    background: transparent;
    color: #737d88;
    font-size: 12px;
    text-align: left;
    cursor: pointer;
}

.custom-select__trigger>span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 17px;
}

.custom-select__trigger>i {
    margin-left: 10px;
    color: #10243c;
    font-size: 9px;
    transition: transform .25s ease;
}

.custom-select.is-open .custom-select__trigger {
    border-bottom-color: #b88932;
    color: #10243c;
}

.custom-select.is-open .custom-select__trigger>i {
    color: #b88932;
    transform: rotate(180deg);
}

.custom-select__menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    min-width: 190px;
    padding: 7px;
    visibility: hidden;
    border: 1px solid #e3ddd3;
    border-radius: 12px;
    background: #fff;
    opacity: 0;
    box-shadow: 0 18px 42px rgba(16, 36, 60, .18);
    transform: translateY(-7px);
    transform-origin: top;
}

.custom-select.is-open .custom-select__menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.custom-select__menu button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 39px;
    padding: 8px 11px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #4f5b68;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
}

.custom-select__menu button::before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 10px;
    border: 1px solid #c09648;
    border-radius: 50%;
}

.custom-select__menu button:hover,
.custom-select__menu button:focus,
.custom-select__menu button[aria-selected="true"] {
    outline: 0;
    background: #10243c;
    color: #fff;
}

.custom-select__menu button:hover::before,
.custom-select__menu button:focus::before,
.custom-select__menu button[aria-selected="true"]::before {
    border-color: #e3b75e;
    background: #e3b75e;
}

/* Larger, clearer Trip Finder visual */
@media (min-width: 992px) {
    .trip-finder__shell {
        grid-template-columns: .8fr 1.2fr;
        min-height: 620px;
    }

    .trip-finder__copy h1 {
        font-size: clamp(42px, 4.2vw, 60px);
    }

    .trip-finder__visual {
        min-height: 620px;
        border-radius: 0 30px 30px 120px;
    }

    .trip-finder__visual>p {
        bottom: 112px;
    }
}

/* Trip Finder editorial hero redesign */
.trip-finder__shell {
    display: block;
    min-height: 650px;
    /* overflow: hidden; */
    background: #d6c2a3;
}

.trip-finder__shell::before {
    z-index: 4;
    border-color: rgba(255, 255, 255, .28);
}

.trip-finder__visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    min-height: 650px;
    border-radius: 30px;
}

.trip-finder__visual>img {
    transform: none;
    /* object-position: center 58%; */
}

.trip-finder__copy {
    position: absolute;
    z-index: 3;
    top: 41px;
    bottom: auto;
    left: 19%;
    justify-content: center;
    width: 68%;
    padding: 31px 35px;
    border-radius: 4px 76px 4px 4px;
    background: rgb(0 0 0 / 29%);
    box-shadow: 0 24px 60px rgb(8 24 40 / 24%);
    /* backdrop-filter: blur(10px); */
}

.trip-finder__copy::before {
    content: "";
    position: absolute;
    top: 19px;
    bottom: 19px;
    left: 18px;
    width: 2px;
    background: #ffffff00;
}

.trip-finder__copy::after {
    content: "ETG / 01";
    position: absolute;
    right: 29px;
    bottom: 24px;
    color: rgba(16, 36, 60, .25);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.trip-finder__copy .trip-finder__eyebrow {
    margin-bottom: 18px;
    color: #a67625;
}

.trip-finder__copy h1 {
    color: #fff;
    font-size: clamp(38px, 4vw, 38px);
    line-height: 1.04;
}

.trip-finder__copy .trip-finder__lead {
    max-width: 390px;
    margin: 22px 0 24px;
    color: #66717c;
    font-size: 13px;
}

.trip-finder__signature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #10243c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.trip-finder__signature i {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #10243c;
    color: #e3b75e;
}

.trip-finder__stamp {
    top: 42px;
    right: 42px;
}

.trip-finder__visual>p {
    right: 42px;
    bottom: 105px;
}

@media (max-width: 991px) {
    .trip-finder__shell {
        display: flex;
        min-height: 0;
        flex-direction: column;
        overflow: hidden;
    }

    .trip-finder__copy {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        order: 1;
        width: auto;
        margin: 20px;
        padding: 48px 42px;
        border-radius: 4px 62px 4px 4px;
    }

    .trip-finder__visual {
        position: relative;
        inset: auto;
        order: 2;
        min-height: 420px;
        border-radius: 0;
    }

    .trip-planner {
        order: 3;
    }
}

@media (max-width: 576px) {
    .trip-finder__copy {
        margin: 12px;
        padding: 43px 29px 43px 34px;
        /* border-radius: 3px 48px 3px 3px; */
    }

    .trip-finder__copy h1 {
        font-size: 36px;
    }

    .trip-finder__visual {
        min-height: 310px;
    }

    .trip-finder__visual>img {
        object-position: 62% center;
    }
}

/* Trip Finder mobile layout: image + overlay copy, then planner */
@media (max-width: 767px) {
    .trip-finder {
        padding: 24px 0 36px;
    }

    .trip-finder .container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .trip-finder__shell {
        position: relative;
        display: block;
        min-height: 0;
        margin-bottom: 0;
        overflow: visible;
        border-radius: 22px;
        background: transparent;
        box-shadow: none;
    }

    .trip-finder__shell::before {
        display: none;
    }

    .trip-finder__visual {
        position: relative;
        inset: auto;
        width: 100%;
        height: 500px;
        min-height: 500px;
        overflow: hidden;
        border-radius: 22px;
        background: #10243c;
        box-shadow: 0 20px 45px rgba(16, 36, 60, .2);
    }

    .trip-finder__visual picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .trip-finder__visual picture img {
        display: block;
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
        object-position: 55% center;
    }

    .trip-finder__visual::after {
        /* background: linear-gradient(180deg, rgba(7, 22, 37, .12) 20%, rgba(7, 22, 37, .72) 100%); */
    }

    .trip-finder__copy {
        position: absolute;
        z-index: 5;
        top: 108px;
        right: 18px;
        bottom: auto;
        left: 18px;
        width: auto;
        margin: 0;
        padding: 24px 23px 25px 28px;
        /* border: 1px solid rgba(255, 255, 255, .2); */
        /* border-radius: 4px 42px 4px 4px; */
        background: rgb(7 22 37 / 0%);
        box-shadow: 0 18px 38px rgb(0 0 0 / 0%);
        /* backdrop-filter: blur(7px); */
    }

    .trip-finder__copy::before {
        top: 16px;
        bottom: 16px;
        left: 14px;
    }

    .trip-finder__copy::after {
        display: none;
    }

    .trip-finder__copy h1 {
        margin: 0;
        color: #fff;
        font-size: clamp(29px, 8.2vw, 38px);
        line-height: 1.08;
    }

    .trip-planner {
        position: relative;
        z-index: 6;
        right: auto;
        bottom: auto;
        left: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        width: 100%;
        margin: 18px 0 0;
        padding: 18px 14px;
        border-radius: 18px;
        box-shadow: 0 18px 42px rgba(16, 36, 60, .14);
    }

    .trip-planner__field,
    .trip-planner__field:nth-child(2),
    .trip-planner__field:nth-child(3) {
        margin-top: 0;
        padding: 13px 8px;
        border-right: 0;
        border-bottom: 1px solid #eee9e1;
    }

    .trip-planner__submit {
        width: 100%;
        margin: 12px 0 0;
    }
}

/* Testimonials and client videos Ã¢â‚¬â€ brand refinement */
.tst2-bg__orb {
    animation: none;
    opacity: .32;
}

.tst2-bg__hieroglyph {
    color: #10243c;
    opacity: .035;
}

.tst2-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 0;
    text-align: left;
}

.tst2-kicker {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 13px;
    color: #a97929;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.tst2-kicker span {
    width: 38px;
    height: 1px;
    background: #a97929;
}

.tst2-title {
    grid-column: 1;
    max-width: 650px;
    margin: 0;
    /* color: #10243c; */
    /* font-size: clamp(36px, 4.5vw, 58px); */
}

.tst-subtitle {
    grid-column: 1;
    max-width: 100%;
    margin: 15px 0 0;
    color: #6d7680;
    font-size: 14px;
}

.tst2-rating {
    grid-column: 2;
    grid-row: 1 / 4;
    display: grid;
    grid-template-columns: 40px auto;
    column-gap: 11px;
    align-items: center;
    min-width: 220px;
    padding: 17px 19px;
    border: 1px solid #ded7cd;
    border-radius: 14px;
    background: #fff;
    color: #10243c;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(16, 36, 60, .07);
}

.tst2-rating>svg {
    grid-row: 1 / 4;
    color: #00aa6c;
    font-size: 31px;
}

.tst2-rating strong {
    font-size: 20px;
    line-height: 1;
}

.tst2-rating span {
    color: #10243c;
    font-size: 10px;
    font-weight: 800;
}

.tst2-rating b {
    color: #8a9199;
    font-size: 9px;
    font-weight: 500;
}

.tst2-card {
    min-height: 355px;
    padding: 35px 30px 27px;
    border: 1px solid #e3ddd3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(16, 36, 60, .065);
}

.tst2-card::before {
    content: "𓂀";
    inset: auto 24px auto auto;
    top: 16px;
    background: none;
    color: rgba(184, 137, 50, .14);
    font-size: 82px;
    line-height: 1;
}

/* .tst2-card::after {
    content: "Verified traveler";
    position: absolute;
    top: 24px;
    left: 30px;
    padding: 6px 9px;
    border-radius: 20px;
    background: #f6efe2;
    color: #9b7028;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
} */

.tst2-card__heading {
    /* margin: 39px 0 13px; */
    /* color: #10243c; */
    /* font-size: 19px; */
}

.tst2-card p {
    height: 125px;
    color: #66717c;
    font-size: 13px;
    line-height: 1.75;
    font-style: normal;
    scrollbar-width: thin;
    scrollbar-color: #d7ad5e transparent;
}

.tst2-card__author {
    margin-top: 15px;
    padding-top: 17px;
    border-top: 1px solid #eee8df;
}

.tst2-card__avatar {
    width: 45px;
    height: 45px;
    border: 2px solid #e3b75e;
}

.tst2-card__stars {
    order: -1;
    margin: 4px 0 0;
}

.tst2-card__stars i {
    font-size: 10px;
}

.tst2-nav {
    justify-content: flex-end;
    margin-top: 26px;
}

.tst2-pagination {
    margin-right: auto;
}

.tst2-btn {
    border-color: #d9d2c7;
    background: transparent;
}

.client-videos-section {
    /* margin-top: 72px; */
    /* padding: 68px 0 75px; */
    background: #10243c;
}

.client-videos-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: min(1262px, calc(100% - 40px));
    margin: 0 auto 32px;
}

.client-videos-heading span {
    color: #e3b75e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.client-videos-heading h3 {
    margin-top: 7px;
    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
}

.client-videos-heading p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}

.client-videos-container {
    gap: 20px;
}

.client-video-card {
    height: 245px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
}

.video-overlay {
    background: linear-gradient(0deg, rgba(8, 24, 40, .58), rgba(8, 24, 40, .06));
}

.video-play-btn {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, .65);
    background: rgba(16, 36, 60, .48);
    color: #fff;
    backdrop-filter: blur(8px);
}

.client-video-card:hover .video-play-btn {
    background: #e3b75e;
    color: #10243c;
}

.client-videos-btn {
    width: auto;
    height: 44px;
    padding: 0 25px;
    border: 1px solid rgba(227, 183, 94, .5);
    border-radius: 22px;
    background: transparent;
    color: #fff;
}

.client-videos-btn:hover {
    background: #e3b75e;
    color: #10243c !important;
}

.newsletter-input:focus {
    background: #fff;
}

@media (max-width: 767px) {
    .tst2-header {
        display: block;
        margin-bottom: 20px;
    }

    .tst2-rating {
        margin-top: 24px;
        width: 100%;
    }

    .tst2-card {
        min-height: 340px;
    }

    .client-videos-section {
        margin-top: 50px;
        padding: 30px 0;
    }

    .client-videos-heading {
        display: block;
        width: calc(100% - 30px);
    }

    .client-videos-heading p {
        margin-top: 14px;
    }

    .client-video-card {
        height: 220px;
    }
}

/* Light client-video treatment */
.client-videos-section {
    position: relative;
    border-top: 1px solid #e5ded3;
    background: linear-gradient(180deg, #fff 0%, #f3eee5 100%);
}

.client-videos-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 90px;
    height: 3px;
    background: #e3b75e;
    transform: translateX(-50%);
}

.client-videos-heading span {
    color: #a97929;
}

.client-videos-heading h3 {
    color: #10243c;
}

.client-videos-heading p {
    color: #6d7680;
}

.client-video-card {
    border-color: #ded7cc;
    background: #fff;
    box-shadow: 0 14px 35px rgba(16, 36, 60, .1);
}

.video-overlay {
    background: linear-gradient(0deg, rgba(16, 36, 60, .42), rgba(16, 36, 60, .03));
}

.video-play-btn {
    border-color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .92);
    color: #10243c;
}

.client-videos-btn {
    border-color: #10243c;
    background: #10243c;
    color: #fff;
}

.client-videos-btn:hover {
    border-color: #e3b75e;
    background: #e3b75e;
    color: #10243c;
}


@media (min-width: 1400px) {
    .site-header .container {
        max-width: 1408px;
    }
}

/* Main navigation */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    /* border-bottom: 1px solid rgba(16,36,60,.09); */
    /* background: rgba(255,255,255,.95); */
    /* box-shadow: 0 7px 25px rgba(16,36,60,.055); */
    /* backdrop-filter: blur(14px); */
}

.site-header__inner {
    display: flex;
    align-items: center;
    min-height: 94px;
    padding: 10px 14px 10px 22px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 45px rgba(12, 10, 7, .16);
    backdrop-filter: blur(16px);
}

.site-header__logo {
    flex: 0 0 auto;
    margin-right: clamp(0px, 2vw, 1px);
}

.site-header__logo img {
    display: block;
    width: 105px;
    max-height: 74px;
    object-fit: contain;
}

.site-nav {
    align-self: stretch;
}

.site-nav__list {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 5px;
}

.site-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.site-nav__link-row {
    display: flex;
    align-items: center;
}

.site-nav__link-row>a {
    position: relative;
    padding: 12px 19px;
    color: #10243c;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.site-nav__link-row>a::after {
    content: "";
    position: absolute;
    right: 19px;
    bottom: 27px;
    left: 19px;
    height: 2px;
    background: #d1a44d;
    transform: scaleX(0);
    transform-origin: right;
}

.site-nav__item:hover .site-nav__link-row>a::after,
.site-nav__item:focus-within .site-nav__link-row>a::after {
    /* transform: scaleX(1); */
    transform-origin: left;
}

.site-nav__dropdown-toggle {
    width: 44px;
    height: 44px;
    margin-left: -15px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #a97929;
    font-size: 8px;
    cursor: pointer;
}

.site-nav__item:hover .site-nav__dropdown-toggle i,
.site-nav__item:focus-within .site-nav__dropdown-toggle i {
    transform: rotate(180deg);
}

.site-nav__dropdown {
    position: absolute;
    top: calc(100% - 5px);
    left: 7px;
    width: 315px;
    padding: 17px;
    visibility: hidden;
    border: 1px solid #e4ded4;
    border-radius: 0 0 18px 18px;
    background: #fff;
    opacity: 0;
    box-shadow: 0 24px 55px rgba(16, 36, 60, .16);
    transform: translateY(10px);
}

.site-nav__dropdown::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 22px;
    width: 42px;
    height: 3px;
    background: #e3b75e;
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.site-nav__dropdown>p {
    margin: 0 8px 10px;
    color: #a97929;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-nav__dropdown>a {
    display: grid;
    grid-template-columns: 37px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 10px;
    color: #10243c;
    text-decoration: none;
}

.site-nav__dropdown>a:hover {
    background: #f7f3eb;
    transform: translateX(3px);
}

.site-nav__dropdown>a>i {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 9px;
    background: #f4ecdc;
    color: #b88932;
    font-size: 13px;
}

.site-nav__dropdown b,
.site-nav__dropdown small {
    display: block;
}

.site-nav__dropdown b {
    font-size: 14px;
}

.site-nav__dropdown small {
    margin-top: 2px;
    color: #89919a;
    font-size: 9px;
}

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

.header-tool {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #192663;
    font-size: 18px;
    cursor: pointer;
}

.header-tool:hover {
    background: #f3ecdf;
}

.header-currency span {
    position: absolute;
    right: 2px;
    bottom: 1px;
    display: grid;
    place-items: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #e3b75e;
    color: #10243c;
    font-size: 8px;
    font-weight: 900;
}

.header-tailor {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 8px;
    padding: 7px 7px 8px 19px;
    border-radius: 27px;
    background: #cca446;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.header-tailor i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    /* background: #20266d; */
}

.header-tailor:hover {
    background: #10243c;
    color: #fff !important;
}

.site-nav__mobile-head,
.site-nav__mobile-actions,
.site-nav__mobile-tailor,
.site-nav {
    display: none;
}

.site-nav__open {
    display: none;
}

@media (min-width: 992px) {
    .site-nav {
        display: block;
    }
}

@media (max-width: 991px) {
    .site-nav__open {
        display: flex;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .site-header__logo img {
        width: 90px;
        max-height: 62px;
    }

    .header-tool,
    .header-tailor {
        display: none;
    }

    .site-nav__open {
        display: flex;
        justify-content: center;
        width: 45px;
        height: 45px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #10243c;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        cursor: pointer;
    }

    .site-nav__open span {
        width: 19px;
        height: 2px;
        background: #e3b75e;
    }

    .site-nav {
        position: fixed;
        z-index: 1002;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(390px, 92vw);
        padding: 0 23px 28px;
        overflow-y: auto;
        background: #fbf8f2;
        box-shadow: -25px 0 60px rgba(16, 36, 60, .22);
        transform: translateX(105%);
        transition: transform .4s var(--ease);
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .site-nav {
        transform: translateX(0);
    }

    .site-nav__backdrop {
        position: fixed;
        z-index: 1001;
        inset: 0;
        visibility: hidden;
        background: rgba(8, 24, 40, .55);
        opacity: 0;
        backdrop-filter: blur(3px);
    }

    body.nav-open .site-nav__backdrop {
        visibility: visible;
        opacity: 1;
    }

    .site-nav__mobile-head {
        position: sticky;
        z-index: 5;
        top: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 92px;
        border-bottom: 1px solid #e4ddd2;
        background: #fbf8f2;
    }

    .site-nav__mobile-head img {
        width: 88px;
    }

    .site-nav__close {
        display: grid;
        place-items: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid #ded6ca;
        border-radius: 50%;
        background: #fff;
        color: #10243c;
        cursor: pointer;
    }

    .site-nav__list {
        display: block;
        height: auto;
        padding: 22px 0 14px;
    }

    .site-nav__item {
        display: block;
        border-bottom: 1px solid #e8e1d6;
    }

    .site-nav__link-row {
        justify-content: space-between;
    }

    .site-nav__link-row>a {
        flex: 1;
        padding: 19px 4px;
        font-size: 21px;
    }

    .site-nav__link-row>a::after {
        display: none;
    }

    .site-nav__dropdown-toggle {
        width: 44px;
        height: 44px;
        margin: 0;
        border: 1px solid #ddd5c9;
        border-radius: 50%;
        background: #fff;
        font-size: 10px;
    }

    .site-nav__item.is-open .site-nav__dropdown-toggle {
        background: #10243c;
        color: #e3b75e;
    }

    .site-nav__item.is-open .site-nav__dropdown-toggle i {
        transform: rotate(180deg);
    }

    .site-nav__dropdown {
        position: static;
        width: auto;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        visibility: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        opacity: 1;
        box-shadow: none;
        transform: none;
    }

    .site-nav__dropdown::before,
    .site-nav__dropdown>p {
        display: none;
    }

    .site-nav__item:hover .site-nav__dropdown,
    .site-nav__item:focus-within .site-nav__dropdown {
        transform: none;
    }

    .site-nav__item.is-open .site-nav__dropdown {
        max-height: 390px;
        padding-bottom: 14px;
    }

    .site-nav__dropdown>a {
        padding: 9px 4px;
    }

    .site-nav__mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .site-nav__mobile-actions button {
        display: grid;
        grid-template-columns: 28px 1fr auto;
        align-items: center;
        min-height: 54px;
        padding: 0 13px;
        border: 1px solid #dfd7ca;
        border-radius: 12px;
        background: #fff;
        color: #10243c;
        text-align: left;
    }

    .site-nav__mobile-actions button i {
        color: #b88932;
    }

    .site-nav__mobile-actions button span {
        font-size: 9px;
    }

    .site-nav__mobile-actions button b {
        font-size: 10px;
    }

    .site-nav__mobile-tailor {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        min-height: 55px;
        margin-top: 14px;
        border-radius: 13px;
        background: #10243c;
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        text-decoration: none;
    }

    .site-nav__mobile-tailor i {
        color: #e3b75e;
    }

    /* .menu__mobile {
        display: none !important;
    } */
}

/* Header language and currency dropdowns */
.header-pref {
    position: relative;
}

.header-pref__menu {
    position: absolute;
    top: calc(100% + 17px);
    right: 0;
    width: 220px;
    padding: 12px;
    visibility: hidden;
    border: 1px solid #e3ddd3;
    border-radius: 14px;
    background: #fff;
    opacity: 0;
    box-shadow: 0 20px 45px rgba(16, 36, 60, .16);
    transform: translateY(8px);
}

.header-pref__menu::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 14px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #e3ddd3;
    border-left: 1px solid #e3ddd3;
    background: #fff;
    transform: rotate(45deg);
}

.header-pref.is-open .header-pref__menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-pref.is-open .header-tool {
    background: #10243c;
    color: #fff;
}

.header-pref__menu>p {
    margin: 2px 7px 9px;
    color: #9b712a;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.language-menu>a {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    min-height: 40px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #4f5965;
    font-size: 11px;
    text-decoration: none;
}

.language-menu>a:hover,
.language-menu>a.is-active {
    background: #f7f2e9;
    color: #10243c;
    font-weight: 800;
}

.language-menu img {
    width: 18px;
    border-radius: 2px;
}

.language-menu i {
    color: #b88932;
    font-size: 9px;
}

.currency-menu>button {
    display: grid;
    grid-template-columns: 34px 38px 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 5px 7px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #10243c;
    text-align: left;
    cursor: pointer;
}

.currency-menu>button:hover,
.currency-menu>button.is-active {
    background: #f7f2e9;
}

.currency-menu>button>b {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #10243c;
    color: #e3b75e;
    font-size: 9px;
}

.currency-menu>button>span {
    font-size: 10px;
    font-weight: 800;
}

.currency-menu>button>small {
    color: #8b929a;
    font-size: 8px;
}

.currency-menu>button>i {
    color: #b88932;
    font-size: 9px;
}

@media (max-width: 991px) {
    .site-nav__mobile-actions {
        align-items: start;
    }

    .mobile-pref {
        min-width: 0;
    }

    .site-nav__mobile-actions .mobile-pref__trigger {
        width: 100%;
        cursor: pointer;
    }

    .side-menu .mobile-pref__options,
    .mobile-pref__options {
        display: grid;
        position: static;
        inset: auto;
        max-height: 0;
        margin-top: 0;
        padding: 0;
        border: 0;
        border-radius: 10px;
        background: transparent;
        box-shadow: none;
        overflow: hidden;
        gap: 5px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-5px);
        transition: max-height .3s ease, margin .3s ease, padding .3s ease, opacity .2s ease, transform .3s ease, visibility .3s ease;
    }

    .side-menu .mobile-pref.is-open .mobile-pref__options,
    .mobile-pref.is-open .mobile-pref__options {
        max-height: 280px;
        margin-top: 7px;
        padding: 5px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        background-color: #fff;
    }

    .mobile-pref__options>a,
    .mobile-pref__options>button {
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 38px;
        padding: 6px 9px;
        border: 1px solid #e2dbcf;
        border-radius: 8px;
        background: #fff;
        color: #59636e;
        font-size: 9px;
        text-decoration: none;
    }

    .mobile-pref__options>.is-active {
        border-color: #d3aa5b;
        background: #f7f1e5;
        color: #10243c;
        font-weight: 800;
    }

    .mobile-pref__options img {
        width: 17px;
    }

    .currency-options>button b {
        width: 28px;
        color: #ad7f2d;
    }
}

/* Current language shown in the header */
.header-language>.header-pref__trigger {
    display: flex;
    width: auto;
    min-width: 104px;
    padding: 0 11px;
    border: 1px solid #e2dbd0;
    border-radius: 20px;
    gap: 7px;
}

.header-language__flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

.header-language__name {
    color: #10243c;
    font-size: 13px;
    font-weight: 600;
}

.header-language>.header-pref__trigger>i {
    margin-left: auto;
    color: #a97929;
    font-size: 8px;
}

.header-language.is-open>.header-pref__trigger .header-language__name {
    color: #fff;
}

.header-language.is-open>.header-pref__trigger>i {
    color: #e3b75e;
    transform: rotate(180deg);
}

.header-currency-pref>.header-pref__trigger {
    display: flex;
    width: auto;
    min-width: 87px;
    padding: 0px 9px;
    border: 1px solid #e2dbd0;
    border-radius: 20px;
    gap: 6px;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.header-currency__symbol {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    /* background: #10243c; */
    color: #10243c;
    font-size: 13px;
    align-items: start;
}

.header-currency .header-currency__code {
    position: static;
    right: auto;
    bottom: auto;
    display: inline;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #10243c;
    font-size: 12px;
    font-weight: 600;
}

.header-currency-pref>.header-pref__trigger>i {
    margin-left: auto;
    color: #a97929;
    font-size: 8px;
}

.header-currency-pref.is-open .header-currency__code {
    color: #fff;
}

.header-currency-pref.is-open .header-currency__symbol {
    background: #e3b75e;
    color: #10243c;
}

.header-currency-pref.is-open>.header-pref__trigger>i {
    color: #e3b75e;
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .header-currency-pref {
        display: none;
    }
}

/* Desktop mega-card dropdown redesign */
@media (min-width: 992px) {
    .site-nav__item.has-dropdown>.site-nav__link-row {
        margin: 0 5px;
        padding: 0 8px;
        border: 1px solid transparent;
        border-radius: 24px;
    }

    .site-nav__item.has-dropdown:hover>.site-nav__link-row,
    .site-nav__item.has-dropdown:focus-within>.site-nav__link-row {
        border-color: #e5dccd;
        background: #f8f3ea;
    }

    .site-nav__item.has-dropdown .site-nav__link-row>a {
        padding-right: 18px;
        padding-left: 12px;
    }

    .site-nav__item.has-dropdown .site-nav__link-row>a::after {
        display: none;
    }

    .site-nav__item.has-dropdown .site-nav__dropdown-toggle {
        width: 18px;
        margin-left: -13px;
        border-radius: 50%;
        /* background: #eee5d5; */
        /* height: 19px; */
    }

    .site-nav__dropdown {
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 510px;
        padding: 75px 18px 20px;
        border: 0;
        border-radius: 20px;
        gap: 8px;
        background: #fff;
        box-shadow: 0 28px 70px rgba(16, 36, 60, .2);
    }

    .site-nav__dropdown::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        width: auto;
        height: 60px;
        border-radius: 20px 20px 0 0;
        background: #10243c;
    }

    .site-nav__dropdown::after {
        content: "CURATED BY EGYPT EXPERTS";
        position: absolute;
        top: 24px;
        right: 21px;
        color: rgba(255, 255, 255, .44);
        font-size: 7px;
        font-weight: 800;
        letter-spacing: .14em;
    }

    .site-nav__dropdown>p {
        position: absolute;
        z-index: 2;
        top: 19px;
        left: 22px;
        display: block;
        margin: 0;
        color: #e3b75e;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: none;
    }

    .site-nav__dropdown>a {
        position: relative;
        grid-template-columns: 44px 1fr;
        min-height: 74px;
        padding: 11px;
        border: 1px solid #ede7de;
        border-radius: 13px;
        background: #fbf9f5;
        gap: 11px;
    }

    .site-nav__dropdown>a::after {
        content: "â†—";
        position: absolute;
        top: 10px;
        right: 11px;
        color: #b68a3a;
        font-size: 11px;
        opacity: 0;
        transform: translate(-4px, 4px);
    }

    .site-nav__dropdown>a:hover {
        border-color: #d8b66f;
        background: #fff;
        box-shadow: 0 10px 24px rgba(16, 36, 60, .08);
        transform: translateY(-2px);
    }

    .site-nav__dropdown>a:hover::after {
        opacity: 1;
        transform: translate(0);
    }

    .site-nav__dropdown>a>i {
        width: 42px;
        height: 42px;
        border: 1px solid #e0c891;
        border-radius: 50%;
        background: #fff;
    }

    .site-nav__dropdown>a:hover>i {
        border-color: #10243c;
        background: #10243c;
        color: #e3b75e;
        transform: rotate(-8deg);
    }

    .site-nav__dropdown b {
        padding-right: 12px;
        color: #10243c;
        font-size: 11px;
    }

    .site-nav__dropdown small {
        margin-top: 5px;
        color: #7b848e;
        font-size: 8px;
        line-height: 1.4;
    }

    .site-nav__item.has-dropdown:nth-child(2) .site-nav__dropdown {
        left: -105px;
    }
}

/* FINAL v2: compact premium dropdown */
@media (min-width: 992px) {
    .site-header .site-nav__dropdown {
        display: block !important;
        width: 285px !important;
        max-height: none !important;
        padding: 12px !important;
        overflow: visible !important;
        border: 1px solid #e5dfd5 !important;
        border-radius: 14px !important;
        background: #fff !important;
        box-shadow: 0 20px 48px rgba(16, 36, 60, .15) !important;
    }

    .site-header .site-nav__dropdown::before {
        top: -4px !important;
        left: 24px !important;
        right: auto !important;
        width: 44px !important;
        height: 4px !important;
        border-radius: 4px !important;
        background: #d3a64f !important;
    }

    .site-header .site-nav__dropdown::after,
    .site-header .site-nav__dropdown>p {
        display: none !important;
    }

    .site-header .site-nav__dropdown>a {
        display: grid !important;
        grid-template-columns: 26px 1fr 16px !important;
        align-items: center !important;
        min-height: 48px !important;
        padding: 7px 9px !important;
        border: 0 !important;
        border-bottom: 1px solid #eee9e1 !important;
        border-radius: 7px !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .site-header .site-nav__dropdown>a:last-child {
        border-bottom-color: transparent !important;
    }

    .site-header .site-nav__dropdown>a::before {
        grid-column: 1 !important;
        align-self: center !important;
        color: #b48635 !important;
        font-size: 9px !important;
        font-weight: 800 !important;
    }

    .site-header .site-nav__dropdown>a::after {
        grid-column: 3 !important;
        content: "â†’" !important;
        position: static !important;
        color: #a8adb3 !important;
        font-size: 11px !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .site-header .site-nav__dropdown>a>span {
        grid-column: 2 !important;
        grid-row: 1 !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .site-header .site-nav__dropdown>a b {
        padding: 0 !important;
        overflow: visible;
        color: #10243c !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        text-overflow: clip;
        white-space: normal;
    }

    .site-header .site-nav__dropdown>a small,
    .site-header .site-nav__dropdown>a>i {
        display: none !important;
    }

    .site-header .site-nav__dropdown>a:hover {
        padding-left: 12px !important;
        border-bottom-color: transparent !important;
        background: #f6f1e8 !important;
    }

    .site-header .site-nav__dropdown>a:hover::after {
        color: #b48635 !important;
        transform: translateX(2px) !important;
    }

    .site-nav__item.has-dropdown:nth-child(2) .site-nav__dropdown {
        left: 0 !important;
    }
}

/* FINAL v3: modern icon dropdown */
@media (min-width: 992px) {
    .site-header .site-nav__dropdown {
        display: block !important;
        width: 365px !important;
        max-height: 510px !important;
        padding: 12px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        border: 1px solid rgba(16, 36, 60, .09) !important;
        border-radius: 18px !important;
        background: rgba(255, 255, 255, .98) !important;
        box-shadow: 0 24px 65px rgba(16, 36, 60, .18) !important;
        backdrop-filter: blur(18px);
        scrollbar-width: thin;
        scrollbar-color: #d5ad5e transparent;
    }

    .site-header .site-nav__dropdown::before {
        top: 0 !important;
        left: 22px !important;
        right: 22px !important;
        width: auto !important;
        height: 3px !important;
        border-radius: 0 0 5px 5px !important;
        background: linear-gradient(90deg, transparent, #e3b75e, transparent) !important;
    }

    .site-header .site-nav__dropdown::after,
    .site-header .site-nav__dropdown>p {
        display: none !important;
    }

    .site-header .site-nav__dropdown>a {
        display: grid !important;
        grid-template-columns: 46px minmax(0, 1fr) 28px !important;
        grid-template-rows: auto !important;
        align-items: center !important;
        min-height: 59px !important;
        margin: 3px 0 !important;
        padding: 9px 2px !important;
        border: 1px solid transparent !important;
        border-radius: 13px !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: none !important;
        font-size: 21px;
    }

    .site-header .site-nav__dropdown>a::before {
        display: none !important;
        content: none !important;
    }

    .site-header .site-nav__dropdown>a::after {
        content: "\2197" !important;
        position: static !important;
        display: grid !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
        place-items: center;
        width: 27px;
        height: 27px;
        border: 1px solid #e3ddd3;
        border-radius: 50%;
        color: #8c949c !important;
        font-size: 10px !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .site-header .site-nav__dropdown>a>i {
        display: grid !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        place-items: center;
        width: 42px !important;
        height: 42px !important;
        border: 1px solid #ead8b4 !important;
        border-radius: 12px !important;
        background: #f8f1e4 !important;
        color: #b48532 !important;
        font-size: 14px !important;
    }

    .site-header .site-nav__dropdown>a>span {
        display: block !important;
        grid-column: 2 !important;
        grid-row: 1 !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 0px 3px !important;
        font-size: 20px;
    }

    .site-header .site-nav__dropdown>a b {
        display: block !important;
        padding: 0 !important;
        overflow: visible !important;
        color: #10243c !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        text-overflow: clip !important;
        white-space: normal !important;
        font-size: 23px;
    }

    .site-header .site-nav__dropdown>a small {
        display: block !important;
        margin-top: 4px !important;
        overflow: hidden;
        color: #8a929a !important;
        font-size: 8px !important;
        line-height: 1.4 !important;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .site-header .site-nav__dropdown>a:hover {
        padding: 9px 10px !important;
        border-color: #10243c !important;
        background: #10243c !important;
        transform: translateX(3px) !important;
    }

    .site-header .site-nav__dropdown>a:hover>i {
        border-color: rgba(227, 183, 94, .5) !important;
        background: rgba(227, 183, 94, .14) !important;
        color: #e3b75e !important;
        transform: rotate(-5deg) !important;
    }

    .site-header .site-nav__dropdown>a:hover b {
        color: #fff !important;
    }

    .site-header .site-nav__dropdown>a:hover small {
        color: rgba(255, 255, 255, .58) !important;
    }

    .site-header .site-nav__dropdown>a:hover::after {
        border-color: rgba(227, 183, 94, .4) !important;
        color: #e3b75e !important;
        transform: rotate(45deg) !important;
    }
}

/* FINAL mobile navigation visibility fix */
@media (max-width: 991px) {
    body.nav-open #site-nav.site-nav {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    #site-nav .site-nav__mobile-head {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #site-nav .site-nav__list {
        position: relative !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
    }

    #site-nav .site-nav__item,
    #site-nav .site-nav__link-row {
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
    }

    #site-nav .site-nav__link-row {
        display: flex !important;
    }

    #site-nav .site-nav__link-row>a {
        display: block !important;
        visibility: visible !important;
        color: #10243c !important;
        opacity: 1 !important;
    }

    #site-nav .site-nav__dropdown-toggle {
        display: grid !important;
        visibility: visible !important;
        place-items: center;
        flex: 0 0 44px;
        opacity: 1 !important;
    }

    #site-nav .site-nav__dropdown {
        position: static !important;
        display: block !important;
        visibility: visible !important;
        width: 100% !important;
        max-height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        border: 0 !important;
        background: transparent !important;
        opacity: 1 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    #site-nav .site-nav__item.is-open .site-nav__dropdown {
        max-height: 650px !important;
        padding: 5px 0 14px !important;
    }

    #site-nav .site-nav__dropdown>a {
        display: grid !important;
        grid-template-columns: 38px 1fr !important;
        visibility: visible !important;
        min-height: 52px !important;
        margin: 4px 0 !important;
        padding: 8px 10px !important;
        border: 1px solid #e7dfd3 !important;
        border-radius: 10px !important;
        background: #fff !important;
        color: #10243c !important;
        opacity: 1 !important;
    }

    #site-nav .site-nav__dropdown>a>i {
        display: grid !important;
        place-items: center;
        width: 34px !important;
        height: 34px !important;
        border-radius: 9px !important;
        background: #f5ecdd !important;
        color: #b48635 !important;
    }

    #site-nav .site-nav__dropdown b,
    #site-nav .site-nav__dropdown small {
        display: block !important;
        visibility: visible !important;
        color: #10243c !important;
        opacity: 1 !important;
    }

    #site-nav .site-nav__dropdown small {
        margin-top: 3px !important;
        color: #7c858e !important;
    }

    #site-nav .site-nav__mobile-actions {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #site-nav .site-nav__mobile-tailor {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .trust-indicators {
        margin-bottom: 25px;
        display: flex;
        align-content: flex-start;
        justify-content: flex-start;
        gap: 0;
        align-items: center;
        flex-wrap: wrap;
    }
}


/* About page — simple hero */
.about-hero {
    position: relative;
    min-height: 454px;
    background: #10243c;
    color: #fff;
    overflow: hidden;
    max-width: var(--container);
    margin: 7px auto;
    border-radius: 22px;
}

.about-hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgb(16 36 60 / 0%) 0%, rgba(16, 36, 60, 0.6) 100%);
}

.about-hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 10%;
    padding-bottom: 20px;
    padding-left: 60px;
}

.about-hero__content {
    max-width: 800px;
}

.about-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
}

.about-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-hero__breadcrumb a:hover {
    color: #e3b75e;
}

.about-hero__breadcrumb i {
    color: #e3b75e;
    font-size: 12px;
}

.about-hero__breadcrumb span {
    color: #fff;
}

.about-hero h1 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
}

.about-hero__intro {
    max-width: 600px;
    margin: 0 0 40px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.7;
}

.about-hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e3b75e 0%, #c89943 100%);
    color: #10243c;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 183, 94, 0.3);
}

.about-hero__cta:hover {
    background: linear-gradient(135deg, #f1cd83 0%, #e3b75e 100%);
    color: #10243c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 183, 94, 0.4);
}

.about-hero__cta i {
    font-size: 14px;
}


del {
    color: #c19b4a;
    font-size: 25px;
    font-weight: 600;
}

.experience-content p {
    display: -webkit-box;
    /* max-height: 0; */
    /* margin: 0; */
    /* overflow: hidden; */
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-bottom: 0;
    margin-top: 7px;
}

.day-ticket__content p {
    color: #666;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: start;
}



.contact-faq {
    display: grid;
    /* width: min(1307px, calc(100% - 30px)); */
    grid-template-columns: minmax(270px, .68fr) minmax(520px, 1.32fr);
    align-items: start;
    gap: 38px;
    margin: 15px auto 10px;
    padding: 30px 0px;
    /* border: 1px solid rgba(22, 33, 62, .07); */
    /* border-radius: 25px; */
    /* background: #fff; */
    /* box-shadow: 0 18px 50px rgba(22, 33, 62, .08); */
}

.contact-faq__intro {
    position: sticky;
    top: 110px
}

.contact-faq__intro .contact-eyebrow {
    color: #a87928
}

.contact-faq__intro h2 {
    margin: 0;
    color: var(--rv-ink);
    font-size: clamp(33px, 3.5vw, 48px);
    line-height: 1.08;
    letter-spacing: -.045em
}

.contact-faq__intro p {
    /* margin: 17px 0 24px; */
    /* color: var(--rv-muted); */
    /* font-size: 11px; */
    /* line-height: 1.8; */
}

.contact-faq__intro>a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--rv-ink);
    font-size: 10px;
    font-weight: 700
}

.contact-faq__intro>a span {
    color: #9b7029
}

.contact-faq__intro>a i {
    display: grid;
    width: 28px;
    height: 28px;
    margin-left: 4px;
    border-radius: 50%;
    place-items: center;
    background: var(--rv-gold);
    font-size: 9px
}

.contact-faq__list {
    display: grid;
    gap: 10px
}

.contact-faq__more {
    text-align: center;
    margin-top: 30px;
}

.faq-show-more,
.faq-show-less {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #061d35;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-show-more:hover,
.faq-show-less:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.faq-show-more i,
.faq-show-less i {
    transition: transform 0.3s ease;
}

.faq-show-more:hover i,
.faq-show-less:hover i {
    transform: translateY(2px);
}

.faq-item {
    border: 1px solid #ebe5dc;
    border-radius: 13px;
    background: #faf8f4;
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease
}

.faq-item.is-open {
    border-color: rgba(183, 137, 56, .5);
    background: #fff;
}

.faq-item h3 {
    margin: 0
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 14px 16px;
    border: 0;
    background: transparent;
    color: var(--rv-ink);
    font-size: 16px;
    font-weight: 750;
    text-align: left;
    cursor: pointer
}

.faq-item button span {
    display: flex;
    align-items: center;
    gap: 13px
}

.faq-item button b {
    color: #b78938;
    font-size: 15px;
    letter-spacing: .08em
}

.faq-item button>i {
    display: grid;
    flex: 0 0 28px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    place-items: center;
    background: #fff;
    color: var(--rv-ink);
    font-size: 12px;
    box-shadow: 0 3px 10px rgba(22, 33, 62, .08);
    transition: transform .25s ease, background .25s ease
}

.faq-item.is-open button>i {
    background: var(--rv-gold);
    transform: rotate(45deg)
}

.faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease
}

.faq-item__answer>div {
    overflow: hidden
}

.faq-item__answer p {
    margin: 0;
    padding: 0 27px 19px;
    font-size: 15px;
    line-height: 1.8
}

.faq-item.is-open .faq-item__answer {
    grid-template-rows: 1fr
}


.site-header .site-nav__dropdown>a:hover small p {
    color: #fff;
    margin-bottom: 0;
}

.nl-horizon__left p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    line-height: 1.7;
    max-width: 460px;
}

.copyright a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: underline;
    padding: 8px;
}

.copyright a:hover {
    color: #b88932 !important;
}

@media(max-width: 991px) {
    .review-platforms {
        margin-top: 55px;
        padding: 36px 30px
    }

    .review-platforms__heading {
        grid-template-columns: 1fr
    }

    .review-platforms__heading p {
        margin-top: 10px
    }

    .review-platforms__grid {
        /* grid-template-columns: 1fr; */
    }

    .review-brand {
        min-height: 82px;
    }

    .tst2-section {
        padding: 58px 0 65px
    }

    .contact-faq {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 44px 35px
    }

    .contact-faq__intro {
        position: relative;
        top: auto
    }
}

@media (min-width: 992px) {
    .site-nav__item.has-dropdown>.site-nav__link-row {
        margin: 0 0px;
        padding: 0 0px;
        border: 1px solid transparent;
        border-radius: 24px;
    }
}

@media(max-width: 767px) {
    .review-platforms {
        width: calc(100% - 21px);
        margin-top: 30px;
        padding: 14px 2px;
        border-radius: 19px
    }

    .review-platforms__heading h2 {
        font-size: 29px
    }

    .review-brand {
        padding: 0;
    }

    .review-brand__content strong {
        font-size: 18px
    }

    .tst2-section {
        margin-top: 10px;
        padding: 30px 0 30px;
    }

    .tst2-header {
        margin-bottom: 27px
    }

    .tst2-title {
        font-size: 30px;
    }

    .tst2-card {
        padding: 23px;
        border-radius: 16px
    }

    .contact-faq {
        width: 100%;
        margin-bottom: 36px;
        padding: 0;
        border-radius: 0;
    }

    .contact-faq__intro h2 {
        font-size: 34px
    }

    .faq-item button {
        padding: 11px 9px;
        /* font-size: 11px; */
    }

    .faq-item button span {
        gap: 8px;
    }

    .faq-item__answer p {
        padding: 0 21px 16px 20px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        min-height: 500px;
    }

    .about-hero__container {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .about-hero h1 {
        font-size: clamp(32px, 6vw, 42px);
    }

    .about-hero__intro {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 238px;
        margin: 7px 6px;
    }

    .about-hero__container {
        padding-top: 64px;
        padding-bottom: 29px;
        padding-left: 29px;
    }

    .about-hero__breadcrumb {
        margin-bottom: 20px;
        font-size: 13px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 0;
    }

    .about-hero h1 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .about-hero__intro {
        font-size: 15px;
        line-height: 1.6;
    }

    .about-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .about-hero__cta {
        width: 100%;
        justify-content: center;
    }

    .header-language,
    .side-menu .dropdown-toggle i {
        display: none;
    }

    .partners .swiper-wrapper {
        justify-content: flex-start;
    }

    .partners .swiper-slide img {
        height: 113px;
        width: 207px;
        max-height: 64px;

    }

    .newsletter-form .input-group {
        flex-direction: row;
        gap: 0;
    }

    .newsletter-btn {
        position: static;
        width: 24%;
        padding: 12px;
    }

    .newsletter-input {
        height: 53px !important;
    }
}

.tst2-card {
    min-height: 283px;
}

@media (max-width: 576px) {
    .nl-horizon {
        padding: 27px 0;
    }

    .modern-footer {

        padding-bottom: 57px;
    }
}

.footer-links {
    padding: 0 0;
}