/* ============ TOKENS ============ */
:root {
    --navy: #0E1F3D;
    --navy-2: #152A52;
    --navy-soft: #1D3768;
    --gold: #D9A441;
    --gold-light: #F2C879;
    --sky: #3E7CB1;
    --cream: #F7F5EF;
    --paper: #FFFFFF;
    --ink: #181A1E;
    --ink-soft: #5B6270;
    --line: #E4E1D8;
    --radius: 14px;
    --shadow: 0 20px 44px -22px rgba(14, 31, 61, .35);
    --font-display: "Poppins";
    --font-body: "Manrope", -apple-system, "Poppins";
    --font-mono: "Space Mono", monospace;
    --maxw: 1220px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    margin: 0;
    line-height: 1.08;
}

p {
    margin: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.stamp.cn {
    background-image: url('../images/destinations/canada.avif');
    background-repeat: no-repeat;
    background-size: 100%;
}

.stamp.aus {
    background-image: url('../images/destinations/australia.avif');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.stamp.auk {
    background-image: url('../images/destinations/auckland.avif');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.stamp.uk {
    background-image: url('../images/destinations/unitedkingdom.avif');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.stamp.america {
    background-image: url('../images/destinations/usa.avif');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.stamp.UAE {
    background-image: url('../images/destinations/dubai.avif');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.stamp.europe {
    background-image: url('../images/destinations/europe.avif');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}



@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.bg-paper {
    background: var(--paper);
}

.bg-cream {
    background: var(--cream);
}

.bg-cream+.bg-cream,
.bg-paper+.bg-paper {
    border-top: 1px solid var(--line);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
    font-family: var(--font-display);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 14px 28px -14px rgba(217, 164, 65, .7);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-outline {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    background-color: var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy-2);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
}

.btn-navy:hover {
    background: var(--navy-2);
}

.btn-arrow {
    transition: transform .18s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============ HEADER ============ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.topbar {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    padding: 8px 24px;
    background: radial-gradient(1100px 620px at 82% -10%, #17335F 0%, var(--navy) 55%, #0A1730 100%);
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: 12.5px;
    color: #fff;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar a:hover {
    color: var(--sky);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: var(--maxw);
    margin: 0 auto;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 60px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-text .name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    color: #002d6b;
    letter-spacing: .01em;
}
.brand-text p {color:var(--ink-soft);font-size: 12px;}

.brand-text .tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--ink-soft);
    letter-spacing: .05em;
    text-transform: uppercase;
}

nav.primary {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav.primary a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    position: relative;
    padding: 6px 2px;
}

nav.primary a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .2s ease;
}

nav.primary a:hover::after,
nav.primary a.active::after {
    width: 100%;
}

nav.primary a.active {
    color: var(--gold);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--navy);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    position: relative;
    transition: all .2s ease;
}

.menu-toggle span::before {
    position: absolute;
    top: -6px;
}

.menu-toggle span::after {
    position: absolute;
    top: 6px;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    background: radial-gradient(1100px 620px at 82% -10%, #17335F 0%, var(--navy) 55%, #0A1730 100%);
    color: #fff;
    overflow: hidden;
    padding: 76px 0 96px;
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-kicker {
    color: var(--gold-light);
}

.hero h1 {
    font-size: clamp(38px, 5.2vw, 64px);
    font-weight: 600;
    margin-top: 18px;
    letter-spacing: -.01em;
    color: var(--navy)
}

.hero h1 .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.hero-sub {
    margin-top: 20px;
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 46ch;
}

.route-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    font-family: var(--font-display);
    font-size: 13px;
    color: #5B6270;
    flex-wrap: wrap;
}

.route-line .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.route-line .seg {
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, #9FB0D1, transparent);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-art {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 460px;
    justify-self: end;
    width: 100%;
}

.hero-art svg {
    width: 100%;
    height: 100%;
}

.quote-float {
    position: absolute;
    bottom: -6px;
    left: -30px;
    background: #fff;
    color: var(--navy);
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 230px;
    font-size: 14px;
    font-weight: 600;
}

.quote-float span {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 0;
    position: relative;
    top: 6px;
}

/* ============ DESTINATIONS ============ */
.section {
    padding: 88px 0;
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    margin-top: 14px;
    color: var(--navy);
}

.section-head p {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 16px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}

.stamp {
    background: var(--paper);
    /* border:1.5px dashed #C9C2AE; */
    border-radius: var(--radius);
    padding: 35px 15px;
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.stamp:hover {
    transform: translateY(-6px) rotate(-.6deg);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.stamp .flag {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px
}

.stamp h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.stamp p {
    margin-top: 8px;
    font-size: 13.5px;
    color: var(--ink-soft);
}

/* ============ SERVICES + TESTPREP ============ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.panel {
    background: var(--paper);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--line);
}

.panel h3 {
    font-size: 22px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel h3 .ic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.item-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 16px 8px;
    border-radius: 12px;
    transition: background .2s ease;
}

.item:hover {
    background: var(--cream);
}

.item .glyph {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    /* background:linear-gradient(150deg,var(--navy),var(--navy-soft)); */
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

#testprep .panel {
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%)
}

.testprep-item {
    background: #fff;
}

.testprep-item .glyph {
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
}

/* ============ WHY US ============ */
.why {
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: 24px;
    padding: 44px 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(500px 260px at 90% 10%, rgba(217, 164, 65, .18), transparent 70%);
}

.why-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.why-head h3 {
    font-size: 23px;
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.why-item {
    text-align: center;
}

.why-item .glyph {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold-light);
}

.why-item span {
    font-size: 16px;
    font-weight: 500;
    color: #EDEFF6;
}

/* ============ TESTIMONIALS ============ */

.testi .mark {
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--gold-light);
    line-height: 0;
    position: absolute;
    top: 24px;
    right: 22px;
}

.testi .stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.testi .stars .dim {
    color: #E4E1D8;
}

.testi p {
    font-size: 14.5px;
    color: var(--ink);
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

.testi-who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--cream), 0 0 0 4px var(--gold-light);
}

.testi-who .who-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
}

.testi-who .who-loc {
    font-size: 12.5px;
    color: var(--sky);
    font-weight: 600;
}

/* ============ TESTIMONIAL CAROUSEL ============ */
.testi-carousel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testi-viewport {
    overflow: hidden;
    flex: 1;
}

.testi-track {
    display: flex;
    transition: transform .5s cubic-bezier(.65, 0, .35, 1);
}

.testi-slide {
    flex: 0 0 33.3334%;
    width: 33.3334%;
    box-sizing: border-box;
    padding: 0 11px;
}

@media (max-width:980px) {
    .testi-slide {
        flex: 0 0 50%;
        width: 50%;
    }
}

@media (max-width:640px) {
    .testi-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 4px;
    }
}

.car-btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: var(--paper);
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.car-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    transform: scale(1.06);
}

.car-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.car-progress .seg {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: #E3DFD3;
    overflow: hidden;
    position: relative;
}

.car-progress .seg .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 999px;
}

.car-progress .seg.completed .fill {
    width: 100%;
}

.car-progress .seg.active .fill {
    animation: fillProgress var(--autoplay-duration, 4.5s) linear forwards;
}

.testi-carousel.paused .car-progress .seg.active .fill {
    animation-play-state: paused;
}

@keyframes fillProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}


/* .car-btn{
  flex-shrink:0;width:46px;height:46px;border-radius:50%;
  border:1.5px solid var(--line);background:var(--paper);color:var(--navy);
  font-size:22px;line-height:1;display:flex;align-items:center;justify-content:center;
  transition:background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.car-btn:hover{background:var(--navy);border-color:var(--navy);color:#fff;transform:scale(1.06);}
.car-dots{display:flex;justify-content:center;gap:10px;margin-top:26px;}
.car-dots button{
  width:9px;height:9px;border-radius:50%;border:none;background:#D8D3C4;padding:0;
  transition:background .2s ease, transform .2s ease;
}
.car-dots button.active{background:var(--gold);transform:scale(1.3);}
.testi{height:100%;} */

/* ============ CONTACT ============ */
.contact-wrap {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 36px;
}

.contact-info {
    background: var(--navy);
    color: #fff;
    border-radius: 20px;
    padding: 36px 32px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 22px;
}

.info-row {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.info-row .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(217, 164, 65, .16);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-row div {
    font-size: 14px;
    color: #D6DCEC;
    line-height: 1.5;
}

.info-row a {
    display: block;
}

.info-row a:hover {
    color: var(--gold-light);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.social-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
}

.social-row a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.form-card {
    background: var(--paper);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--line);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field.full {
    grid-column: 1/-1;
}

.field label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.field input,
.field select,
.field textarea {
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14.5px;
    background: var(--cream);
    color: var(--ink);
    transition: border-color .18s ease, background .18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    background: #fff;
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 96px;
}

.form-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

/* ============ FOOTER ============ */
footer {
    background: #0A1730;
    color: #B6C0DA;
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 36px;
}

.footer-brand {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-brand .name {
    font-family: var(--font-display);
    font-size: 19px;
    color: #fff;
}

.footer-brand p {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #93A0C2;
    max-width: 32ch;
}

footer h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: .03em;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul a {
    font-size: 13.5px;
    color: #B6C0DA;
}

footer ul a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: #7C89AC;
}

/* ============ SKIP LINK ============ */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: var(--gold);
    color: var(--navy);
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    z-index: 1000;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width:980px) {
    nav.primary {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta .btn-primary {
        display: none;
    }

    .hero .wrap {
        grid-template-columns: 1fr;
    }

    .hero-art {
        justify-self: center;
        max-width: 340px;
        margin-top: 20px;
    }

    .item-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .topbar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .item-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .field {
        grid-column: 1/-1;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quote-float {
        position: static;
        margin-top: 18px;
        max-width: none;
    }

    .section {
        padding: 64px 0;
    }

    .testi-carousel {
        gap: 8px;
    }

    .car-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

/* Mobile nav drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--navy);
    color: #fff;
    flex-direction: column;
    padding: 24px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 26px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-nav .btn {
    margin-top: 24px;
    justify-content: center;
}


#home {
    background-image: url('../images/hero.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#services {
    background: radial-gradient(1100px 620px at 82% -10%, #17335F 0%, var(--navy) 55%, #0A1730 100%);
    ;
}

#services .section-head h2 {
    color: #fff
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.destination-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease;

    transform: translateZ(0);

    backface-visibility: hidden;

    isolation: isolate;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform:scale(1);

    transform-origin:center;

    transition:
        transform .9s cubic-bezier(.22,1,.36,1),
        filter .8s ease;

    will-change:transform;

    backface-visibility:hidden;

}

.destination-card:hover img {
        transform:scale(1.10);

    filter:brightness(1.08);
}

.destination-card:hover {
     transform: translateY(-10px);

    box-shadow:
        0 30px 60px rgba(0,0,0,.22);

}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .75));
            transition:.5s;
}

.destination-card:hover .overlay{

background:
linear-gradient(
180deg,
rgba(0,0,0,.02),
rgba(0,0,0,.84)
);

}

.country-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    color: #fff;

}

.country-flag {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: #fff;
    padding: 0px;
    margin-bottom: 15px;

}

.country-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;

}

.country-content span {
    font-size: 15px;
    opacity: .9;
    letter-spacing: .5px;
}
.f-slogan{
    display: flex;
    align-items: center;
    gap: 15px;
}
.slogan-icon{
    font-size: 2.5rem;
    color:var(--gold)
}
.slogan-text strong{
    font-size:15px;
    color:var(--gold)
}
.slogan-text p {
    font-size: 0.85rem;
    color: #ccd5e0;
}

@media(max-width:768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card {
        height: 220px;

    }

    .country-content h3 {
        font-size: 22px;
    }

    #home{
        background-image: none;
        background: radial-gradient(1100px 620px at 82% -10%, #17335F 0%, var(--navy) 55%, #0A1730 100%);
    }
    .hero h1{color:#fff}
}