@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0a1f44;
    --blue: #0c4da2;
    --sky: #4aa3ff;
    --ice: #eaf4ff;
    --white: #ffffff;
    --ink: #0b1424;
    --muted: #5b6b86;
    --line: #d6e3f5;
    --shadow: 0 24px 60px rgba(10, 31, 68, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 45%, #f3f8ff 100%);
}

a {
    text-decoration: none;
    color: inherit;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.151);
    backdrop-filter: saturate(160%) blur(1px);
    -webkit-backdrop-filter: saturate(160%) blur(1px); 
    border: 1px solid rgba(214, 227, 245, 0.6);
    box-shadow: 0 8px 28px rgba(10, 31, 68, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 10px;
}

.header-contact-bar {
    border-bottom: 1px solid rgba(214, 227, 245, 0.7);
    background: rgba(255, 255, 255, 0.62);
}

.header-contact-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    font-size: 0.82rem;
    color: var(--navy);
}

.header-contact-inner a {
    color: var(--navy);
    font-weight: 600;
    transition: color 0.2s ease;
}

.header-contact-inner a:hover {
    color: var(--blue);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    width: 40px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 31, 68, 0.08);
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    position: relative;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.35);
}

.brand-logo {
    width: 72px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    background: #fff;
    padding: 6px;
}

.brand-text {
    display: none;
}

.brand-name {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.brand-tag {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    font-size: 0.9rem;
}

.nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: visible;
    font-family: 'Outfit', sans-serif;
}

.nav a:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue);
}

.nav a.active {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    color: #fff;
}

.nav .button {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    border: 1px solid transparent;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav .button:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(12, 77, 162, 0.22);
}

.hero {
    padding: 84px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    align-items: center;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--navy);
    margin-bottom: 18px;
}

.hero p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button-primary,
.button-outline {
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-primary {
    background: var(--blue);
    color: var(--white);
}

.button-outline {
    border: 1px solid var(--blue);
    color: var(--blue);
    background: var(--white);
}

.button-primary:hover,
.button-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(12, 77, 162, 0.22);
}

.panel {
    padding: 64px 0;
}

.panel-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.panel-subtitle {
    color: var(--muted);
    margin-bottom: 28px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.route-card h3 {
    color: var(--navy);
    margin-bottom: 10px;
}
.route-list {
    list-style: disc;
    padding-left: 18px;
    color: var(--ink);
    line-height: 1.6;
}
.price-card {
    background: var(--ice);
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: 0 14px 30px rgba(10, 31, 68, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 12px 26px rgba(12, 77, 162, 0.22);
}
.price-sub {
    color: var(--muted);
    font-weight: 600;
}
.price-note {
    color: var(--navy);
    font-weight: 600;
}
.route-note {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--ice);
    color: var(--navy);
    font-weight: 600;
}
.route-note-strong {
    background: var(--navy);
    color: #fff;
}

.card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: 0 14px 30px rgba(10, 31, 68, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(10, 31, 68, 0.14);
    border-color: #c9dcf3;
}

.card h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.stat {
    padding: 18px;
    background: var(--ice);
    border-radius: 16px;
    border: 1px solid var(--line);
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.section-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--ice);
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.list {
    display: grid;
    gap: 12px;
}

.list-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--muted);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.list-item:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    box-shadow: 0 10px 24px rgba(10, 31, 68, 0.08);
    color: var(--navy);
}

.particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #2563eb;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

@keyframes explode {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

label {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: inherit;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    margin-top: 18px;
}

.site-footer {
    margin-top: auto;
    padding: 48px 0 24px;
    background: var(--navy);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
    margin-bottom: 10px;
    padding: 6px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-links {
    display: grid;
    gap: 8px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 16px;
}

.muted {
    color: var(--muted);
}

body.no-scroll {
    overflow: hidden;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 68, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 60;
}
.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}
.mobile-sheet {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(86vw, 360px);
    background: #ffffff;
    border-left: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(10, 31, 68, 0.18);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    padding: 18px;
    gap: 10px;
}
.mobile-menu.is-open .mobile-sheet {
    transform: translateX(0);
}
.mobile-menu .mobile-links {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}
.mobile-menu .mobile-links a {
    display: inline-flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    color: var(--navy);
    background: #fff;
    animation: menuItemIn 0.35s ease both;
}
.mobile-menu .mobile-links a.active {
    background: var(--ice);
    border-color: #c9dcf3;
    color: var(--blue);
}
.mobile-menu .mobile-cta {
    margin-top: auto;
    display: grid;
    gap: 10px;
}
.mobile-menu .mobile-cta .button {
    display: inline-flex;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
}

@keyframes menuItemIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
    .header-contact-inner {
        justify-content: center;
        gap: 12px;
        font-size: 0.74rem;
        min-height: 30px;
    }
    .menu-toggle {
        display: inline-flex;
    }
    .nav {
        display: none;
    }
    .site-header {
        position: relative;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .header-inner {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 560px) {
    .header-contact-inner {
        flex-direction: column;
        gap: 4px;
        padding: 6px 0;
    }
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 6px 20px rgba(10, 31, 68, 0.12);
}

.hero-slider {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    margin-bottom: 8px;
}

.slider-track {
    position: relative;
    min-height: 72vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(4%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: grid;
    align-items: center;
}

.slide.is-active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.is-exiting {
    opacity: 0;
    transform: translateX(-4%);
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 72vh;
    object-fit: cover;
    filter: saturate(1.05);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 31, 68, 0.78) 0%, rgba(10, 31, 68, 0.4) 55%, rgba(10, 31, 68, 0.2) 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    color: var(--white);
}

.slide-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4.4vw, 3.6rem);
    max-width: 560px;
}

.slide-content p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.slide-content .badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.slide-content .button-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: transparent;
}

.slide-content .button-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-controls {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.slider-dot.is-active {
    background: var(--white);
    transform: scale(1.2);
}

@media (max-width: 860px) {
    .slide img {
        height: 70vh;
    }
    .slide-content {
        padding: 0 4vw;
    }
    .slider-controls {
        bottom: 16px;
    }
}
.slide.is-active .slide-content {
    animation: slideIn 0.9s ease both;
}

.slide.is-exiting .slide-content {
    animation: slideOut 0.6s ease both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}
.hero-slider .slide-content.container {
    width: min(50vw, 560px);
    margin-left: clamp(16px, 4vw, 48px);
    margin-right: auto;
}

@media (max-width: 860px) {
    .hero-slider .slide-content.container {
        width: min(90vw, 560px);
        margin-left: auto;
        margin-right: auto;
    }
}
.hero-slider .slide-content h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.hero-slider .slide-content p {
    font-size: 0.98rem;
}

.hero-slider .slide-content .badge {
    font-size: 0.78rem;
}

.hero-slider .hero-actions a {
    font-size: 0.9rem;
}
.hero-slider {
    width: 75%;
    margin: 0 auto 8px;
    border-radius: 28px;
}

.hero-slider .slide img {
    border-radius: 28px;
}

@media (max-width: 860px) {
    .hero-slider {
        width: 100%;
        border-radius: 0;
    }
    .hero-slider .slide img {
        border-radius: 0;
    }
}
.hero-slider {
    width: 85%;
}
.hero-slider,
.slider-track,
.hero-slider .slide img {
    min-height: 75vh;
    height: 75vh;
}
.hero-slider,
.slider-track,
.hero-slider .slide img {
    min-height: 56.25vh;
    height: 56.25vh;
}

.gallery-panel {
    padding-top: 56px;
    background: #efeee8;
    overflow: hidden;
}

.gallery-panel .container {
    width: min(1240px, 96vw);
}

.social-gallery {
    position: relative;
    margin-top: 8px;
}

.social-gallery-stage {
    position: relative;
    height: clamp(360px, 52vw, 620px);
}

.gallery-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(200px, 24vw, 320px);
    aspect-ratio: 9 / 16;
    margin: 0;
    border-radius: 36px;
    overflow: hidden;
    background: #0f172a;
    z-index: var(--gallery-depth, 1);
    opacity: var(--gallery-opacity, 0);
    transform: translate(-50%, -50%) translateX(var(--gallery-x, 0px)) rotate(var(--gallery-rotation, 0deg)) scale(var(--gallery-scale, 1));
    transform-origin: center 85%;
    box-shadow: 0 26px 46px rgba(15, 23, 42, 0.26);
    transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease, box-shadow 700ms ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.gallery-card.is-active {
    box-shadow: 0 32px 64px rgba(15, 23, 42, 0.34);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.gallery-page-panel {
    padding-top: 48px;
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 42%, #f6f9ff 100%);
}

.gallery-page-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 18px;
}

.gallery-page-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #bfd4ef;
    background: #eaf3ff;
    color: #134483;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
}

.gallery-page-item {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d8e6f8;
    box-shadow: 0 14px 34px rgba(10, 31, 68, 0.11);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

.gallery-page-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 26px 48px rgba(10, 31, 68, 0.2);
    border-color: #b7d0f0;
}

.gallery-page-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-page-item:nth-child(6n+1) img,
.gallery-page-item:nth-child(6n+4) img {
    aspect-ratio: 4 / 6;
}

.gallery-page-item:nth-child(7n+3) img {
    aspect-ratio: 6 / 4;
}

.gallery-page-item:hover img {
    transform: scale(1.12);
}

@media (max-width: 860px) {
    .social-gallery-stage {
        height: clamp(320px, 98vw, 470px);
    }

    .gallery-card {
        width: clamp(160px, 34vw, 230px);
        border-radius: 28px;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

}

/* Reviews Page */
.reviews-page-panel {
    padding-top: 46px;
    background:
        radial-gradient(1200px 360px at 85% -8%, rgba(111, 106, 248, 0.14), transparent 60%),
        radial-gradient(900px 280px at 8% 10%, rgba(226, 238, 250, 0.95), transparent 68%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #f6f9ff 100%);
}

.reviews-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.review-stat-card {
    border-radius: 16px;
    border: 1px solid #dbe6fb;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(15, 42, 87, 0.08);
    padding: 16px 18px;
}

.review-stat-card strong {
    display: block;
    font-size: 1.35rem;
    color: #5b59e6;
    font-weight: 700;
    margin-bottom: 6px;
}

.review-stat-card span {
    color: #5f6f8f;
    font-size: 0.87rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.review-tile {
    position: relative;
    border-radius: 18px;
    border: 1px solid #d7e2f7;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 18px 34px rgba(15, 42, 87, 0.1);
    padding: 18px;
    opacity: 0;
    transform: translateY(10px);
    animation: reviewCardIn 0.52s ease forwards;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.review-tile:hover {
    transform: translateY(-5px);
    border-color: #c7d6f4;
    box-shadow: 0 24px 38px rgba(15, 42, 87, 0.16);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #6f6af8, #5fd3f4);
    box-shadow: 0 10px 18px rgba(111, 106, 248, 0.32);
    flex: 0 0 46px;
}

.review-head h3 {
    font-size: 1.02rem;
    color: #132542;
    margin-bottom: 2px;
}

.review-head p {
    color: #7184a5;
    font-size: 0.82rem;
}

.review-type-badge {
    margin-left: auto;
    border-radius: 999px;
    background: #e9efff;
    color: #4a61d8;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 10px;
    border: 1px solid #cfdbf8;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
    color: #f6ad2e;
    font-size: 1rem;
}

.review-rating .is-muted {
    color: #d7deed;
}

.review-copy {
    color: #26364f;
    line-height: 1.62;
    font-size: 0.94rem;
}

.review-meta {
    margin-top: 14px;
    color: #7e8da9;
    font-size: 0.8rem;
}

@keyframes reviewCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .reviews-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Chat Widget */
.chat-widget-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chat-widget-btn:hover {
    transform: scale(1.1) rotate(-10deg);
}

.chat-widget-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 360px;
    height: 520px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(10, 31, 68, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
    border: 1px solid var(--line);
    animation: chatSlideIn 0.3s ease-out;
}

@keyframes chatSlideIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-header {
    background: var(--navy);
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-avatar {
    font-size: 24px;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-status {
    font-size: 0.75rem;
    color: #4ade80;
    display: block;
}
.chat-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 0 8px;
}
.chat-close:hover {
    color: #fff;
}

.chat-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
}
.chat-msg.bot {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}
.chat-msg.user {
    background: var(--blue);
    color: #fff;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}
.chat-msg.loading span {
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out both;
    margin: 0 2px;
}
.chat-msg.loading span:nth-child(1) { animation-delay: -0.32s; }
.chat-msg.loading span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.chat-option-btn {
    background: var(--ice);
    border: 1px solid var(--blue);
    color: var(--blue);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.chat-option-btn:hover {
    background: var(--blue);
    color: #fff;
}

.chat-footer {
    padding: 12px;
    background: #fff;
    border-top: 1px solid var(--line);
}
#chat-form {
    display: flex;
    gap: 8px;
}
#chat-input {
    flex: 1;
    border-radius: 99px;
    padding: 10px 16px;
    font-size: 0.95rem;
    background: #f1f5f9;
    border: none;
}
#chat-input:focus {
    background: #fff;
    box-shadow: 0 0 0 2px var(--blue);
    outline: none;
}
#chat-form button {
    background: var(--blue);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
#chat-form button:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .chat-widget-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    .chat-widget-btn {
        bottom: 16px;
        right: 16px;
    }
}

.countries-panel {
    position: relative;
    background-image: url('../assets/61765.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.countries-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(7, 18, 42, 0.88) 0%, rgba(10, 31, 68, 0.76) 48%, rgba(10, 31, 68, 0.62) 100%);
    z-index: 0;
}

.countries-panel-content {
    position: relative;
    z-index: 1;
}

.countries-panel .panel-title {
    color: #ffffff;
}

.countries-panel .panel-subtitle {
    color: rgba(255, 255, 255, 0.86);
    max-width: 680px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.countries-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
    animation: countriesCardIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.countries-grid .countries-card:nth-child(2) {
    animation-delay: 0.12s;
}

.countries-compact-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 10px;
}

.countries-compact-list li {
    margin: 0;
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid rgba(12, 77, 162, 0.16);
    background: rgba(234, 244, 255, 0.92);
    color: #0f2348;
    font-size: 0.89rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(8px);
    animation: countriesItemIn 0.45s ease forwards;
}

.countries-compact-list li:nth-child(6n + 1) { animation-delay: 0.06s; }
.countries-compact-list li:nth-child(6n + 2) { animation-delay: 0.12s; }
.countries-compact-list li:nth-child(6n + 3) { animation-delay: 0.18s; }
.countries-compact-list li:nth-child(6n + 4) { animation-delay: 0.24s; }
.countries-compact-list li:nth-child(6n + 5) { animation-delay: 0.30s; }
.countries-compact-list li:nth-child(6n + 6) { animation-delay: 0.36s; }

.countries-note {
    margin-top: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(10, 31, 68, 0.09);
    color: var(--navy);
    font-weight: 600;
}

@keyframes countriesCardIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countriesItemIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .countries-compact-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .countries-panel {
        padding: 52px 0;
    }
    .countries-grid {
        grid-template-columns: 1fr;
    }
    .countries-compact-list li {
        font-size: 0.84rem;
        padding: 6px 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .countries-card,
    .countries-compact-list li {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
