@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;600;700;800&family=Be+Vietnam+Pro:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   ABC Travel Russia – Custom CSS Design System
   Warm Gold Premium Theme
   ============================================ */

.style-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at top, rgba(200,152,46,0.22), transparent 34%), #2C2417;
    color: #fff;
    transition: opacity .42s ease, visibility .42s ease;
}
.style-loader.loaded {
    opacity: 0;
    visibility: hidden;
}
.style-loader-card {
    width: min(310px, calc(100vw - 44px));
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(14px);
}
.style-loader-card img {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    padding: 6px;
    border-radius: 14px;
    background: #fff;
}
.style-loader-card strong {
    display: block;
    font-size: 1.4rem;
    color: #fff;
}
.style-loader-card span {
    display: block;
    margin: 6px 0 18px;
    color: rgba(255,255,255,.72);
    font-size: .86rem;
}
.style-loader-bar {
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
}
.style-loader-bar i {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #C8982E, #fff3bf);
    animation: styleLoad 1s ease-in-out infinite alternate;
}
@keyframes styleLoad {
    to { transform: translateX(140%); }
}

/* ---------- CSS Variables ---------- */
:root {
    --brand-lightest: #FFFDF5;
    --brand-light: #FFF8E7;
    --brand: #C8982E;
    --brand-dark: #A67B1E;
    --brand-darker: #2C2417;
    --brand-gold-start: #D4A843;
    --brand-gold-end: #C8982E;
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-muted: #8a8a8a;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(200, 152, 46, 0.08);
    --shadow-hover: 0 8px 40px rgba(200, 152, 46, 0.15);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--brand-lightest);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', Georgia, serif;
    color: var(--text-dark);
    line-height: 1.3;
}

a { text-decoration: none; transition: var(--transition); }

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

:focus-visible {
    outline: 3px solid rgba(200, 152, 46, 0.45);
    outline-offset: 3px;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--brand-darker);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 6px 0;
}
.top-bar a {
    color: rgba(255,255,255,0.8);
}
.top-bar a:hover {
    color: var(--brand);
}
.top-bar .header-zalo-link {
    align-items: center;
    background: #0068FF;
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 800;
    height: 18px;
    justify-content: center;
    line-height: 1;
    padding: 0 5px;
}
.top-bar .header-zalo-link:hover {
    background: #1f7cff;
    color: #fff;
}
.top-bar .separator {
    color: rgba(255,255,255,0.3);
    margin: 0 12px;
}

/* ---------- Navigation ---------- */
.main-nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 152, 46, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
}
.nav-logo div {
    line-height: 1.15;
}
.nav-logo span {
    font-size: 0.7rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: -3px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}
.nav-links a {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--brand);
    background: var(--brand-light);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--brand);
    border-radius: 3px;
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--brand);
    cursor: pointer;
    padding: 8px;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}
.mobile-nav-content {
    background: var(--white);
    width: 280px;
    height: 100%;
    padding: 30px 20px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}
.mobile-nav.open .mobile-nav-content {
    transform: translateX(0);
}
.mobile-nav.open {
    display: block;
}
.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}
.mobile-nav-links a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    font-size: 1rem;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--brand);
    background: var(--brand-light);
}

@media (max-width: 1120px) {
    .nav-links a {
        font-size: 0.84rem;
        padding: 8px 10px;
    }
    .nav-logo {
        font-size: 1.32rem;
    }
}

@media (max-width: 920px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .top-bar .hide-mobile { display: none; }
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: clamp(560px, 72vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 16, 10, 0.82) 0%, rgba(44, 36, 23, 0.66) 42%, rgba(200, 152, 46, 0.18) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.45) 100%);
}
.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(255,253,245,0.98));
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px;
    color: var(--white);
}
.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.45rem, 5vw, 4.6rem);
    font-weight: 800;
    margin: 0 0 16px;
    max-width: 780px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 1.12rem;
    max-width: 620px;
    margin: 0 0 32px;
    opacity: 0.95;
    line-height: 1.8;
}
.hero-badges {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    max-width: 900px;
}
.hero-badges--inline {
    margin-top: -8px;
    margin-bottom: 28px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    width: 100%;
}
.hero-badges--inline .hero-badge {
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 0.78rem;
    flex: 0 0 auto;
}
@media (max-width: 720px) {
    .hero-badges--inline { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .hero-badges--inline .hero-badge { font-size: 0.7rem; padding: 7px 10px; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(200,152,46,0.25) 0%, rgba(255,255,255,0.12) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212,168,67,0.6), rgba(255,255,255,0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.3);
}
.hero-badge i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    color: var(--white);
    font-size: 0.82rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(200,152,46,0.35);
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero { min-height: 520px; }
    .hero-content p { font-size: 0.98rem; }
    .hero-content { padding: 60px 16px 80px; }
    .hero-badges { gap: 10px; margin-bottom: 28px; }
    .hero-badge { font-size: 0.8rem; padding: 10px 14px; gap: 8px; border-radius: 10px; }
    .hero-badge i { width: 28px; height: 28px; font-size: 0.72rem; border-radius: 6px; }
    .hero-btns .btn { width: 100%; justify-content: center; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Be Vietnam Pro', sans-serif;
    text-decoration: none;
    line-height: 1.25;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 152, 46, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 152, 46, 0.4);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--brand);
    border-color: var(--white);
}
.btn-outline-gold {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}
.btn-outline-gold:hover {
    background: var(--brand);
    color: var(--white);
}
.btn-dark {
    background: var(--brand-darker);
    color: var(--white);
}
.btn-dark:hover {
    background: #1a150e;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ---------- Sections ---------- */
.section {
    padding: 88px 24px;
}
.section-alt {
    background: var(--brand-light);
}
.section-dark {
    background: var(--brand-darker);
    color: var(--white);
}
.section-dark h2,
.section-dark h3 {
    color: var(--white);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .subtitle {
    display: inline-block;
    color: var(--brand);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 16px;
}
.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .section { padding: 56px 20px; }
    .section-header h2 { font-size: 1.8rem; }
    .section-header { margin-bottom: 40px; }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}
.stat-card {
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--radius);
    text-align: left;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(200, 152, 46, 0.12);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 18px;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.stat-card .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-light), rgba(200,152,46,0.14));
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex: 0 0 52px;
}
.stat-copy {
    min-width: 0;
}
.stat-card .stat-number {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--brand);
    line-height: 1.2;
    margin-top: 4px;
}
.stat-card .stat-number-code {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--brand-light);
    border: 1px solid rgba(200,152,46,0.18);
    font-size: 0.88rem;
    letter-spacing: 0.6px;
}
.stat-card .stat-label {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-dark);
    font-weight: 700;
}

@media (max-width: 768px) {
    .stats-bar { grid-template-columns: 1fr; margin-top: -30px; gap: 16px; }
    .stat-card { padding: 18px; }
    .stat-card .stat-number { font-size: 1rem; }
}

/* ---------- About Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image:hover img {
    transform: scale(1.03);
}
.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.about-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.about-features li i {
    color: var(--brand);
    margin-top: 4px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image img { height: 280px; }
}

/* ---------- Partner Cards ---------- */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.partner-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(200, 152, 46, 0.1);
    transition: var(--transition);
}
.partner-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--brand);
    transform: translateY(-4px);
}
.partner-card .partner-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-light), rgba(200,152,46,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.partner-card h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.partner-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .partner-grid { grid-template-columns: 1fr; }
}

/* ---------- Tour Cards ---------- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.tour-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(44,36,23,0.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(200, 152, 46, 0.1);
}
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.tour-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-image img {
    transform: scale(1.08);
}
.tour-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(200, 152, 46, 0.3);
}
.tour-card-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tour-card-schedule {
    font-size: 0.85rem;
    color: var(--brand);
    font-weight: 500;
    margin-bottom: 8px;
}
.tour-card-schedule i { margin-right: 6px; }
.tour-card-body h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.5;
    flex: 1;
}
.tour-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.tour-card-price {
    font-family: 'Noto Serif', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand);
}
.tour-card-price .old-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .tour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .tour-grid { grid-template-columns: 1fr; }
    .tour-card-footer { align-items: flex-start; flex-direction: column; }
    .tour-card-footer .btn { width: 100%; }
}

/* ---------- Service Cards ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(200, 152, 46, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold-start), var(--brand-gold-end));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--brand);
    transform: translateY(-6px);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    color: var(--white);
    transform: scale(1.1);
}
.service-card h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Testimonial Cards ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-text::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--brand);
    font-family: 'Noto Serif', serif;
    line-height: 0;
    vertical-align: -0.5em;
    margin-right: 4px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-light);
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.testimonial-tour {
    font-size: 0.8rem;
    color: var(--brand);
}

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

/* ---------- Blog Cards ---------- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(0,0,0,0.04);
}
.blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.blog-card-image {
    width: 320px;
    min-height: 240px;
    flex-shrink: 0;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-card-date {
    font-size: 0.85rem;
    color: var(--brand);
    font-weight: 500;
    margin-bottom: 8px;
}
.blog-card-body h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-card-body h3 a {
    color: var(--text-dark);
}
.blog-card-body h3 a:hover {
    color: var(--brand);
}
.blog-card-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-more {
    color: var(--brand);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}
.blog-read-more:hover {
    gap: 10px;
    color: var(--brand-dark);
}

@media (max-width: 768px) {
    .blog-card { flex-direction: column; }
    .blog-card-image { width: 100%; min-height: 200px; height: 200px; }
}

/* ---------- Commitment Cards ---------- */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.commitment-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.commitment-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.commitment-card .commit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--white);
}
.commitment-card h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.commitment-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .commitment-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 60px 24px;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
}
.cta-banner p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    font-size: 1.05rem;
}

/* ---------- Page Banner ---------- */
.page-banner {
    position: relative;
    padding: 80px 24px;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 36, 23, 0.8), rgba(200, 152, 46, 0.5));
}
.page-banner-content {
    position: relative;
    z-index: 2;
}
.page-banner h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.page-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-banner { padding: 60px 20px; }
    .page-banner h1 { font-size: 1.8rem; }
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(200, 152, 46, 0.08);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Be Vietnam Pro', sans-serif;
    transition: var(--transition);
    background: var(--brand-lightest);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(200, 152, 46, 0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
}

/* ---------- Office Tabs ---------- */
.office-tabs {
    display: flex;
    gap: 8px;
    margin: 24px 0 16px;
}
.office-tab {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    background: var(--brand-light);
    color: var(--text-body);
    border: 1px solid transparent;
    transition: var(--transition);
}
.office-tab.active,
.office-tab:hover {
    background: var(--brand);
    color: var(--white);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--brand-darker);
    color: rgba(255,255,255,0.7);
    padding: 60px 24px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}
.footer-col h4 {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand);
    display: inline-block;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-logo-img {
    height: 64px;
    width: auto;
    max-width: 64px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-brand-name {
    margin: 0;
    padding: 0 0 6px;
    border-bottom: 2px solid var(--brand);
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 12px;
}
.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    display: block;
    padding: 4px 0;
}
.footer-col a:hover {
    color: var(--brand);
    padding-left: 4px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    padding: 0;
}
.footer-social a:hover {
    background: var(--brand);
    color: var(--white);
    padding-left: 0;
    transform: translateY(-2px);
}
.footer-bottom {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Floating Buttons ---------- */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9990;
}
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: var(--white);
}
.float-btn.phone { background: #E53935; }
.float-btn.zalo { background: #0068FF; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.facebook { background: #1877F2; }

@media (max-width: 640px) {
    .floating-buttons {
        right: 14px;
        bottom: 14px;
        gap: 8px;
    }
    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
}

/* Pulse animation */
.float-btn.phone {
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(200, 152, 46, 0.3);
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9990;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--brand-dark);
}

@media (max-width: 640px) {
    .back-to-top {
        left: 14px;
        bottom: 14px;
        width: 40px;
        height: 40px;
    }
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Utility ---------- */
.text-brand { color: var(--brand); }
.text-white { color: var(--white); }
.bg-brand { background-color: var(--brand); }
.bg-brand-light { background-color: var(--brand-light); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }

/* ---------- Article / Blog Detail ---------- */
.article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px;
}
.article-hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.article-meta i { color: var(--brand); }
.article-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
    line-height: 1.3;
}
.article-content {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-body);
}
.article-content p { margin-bottom: 20px; }
.article-share {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.share-buttons {
    display: flex;
    gap: 10px;
}
.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.95rem;
}
.share-btn.fb { background: #E7F3FF; color: #1877F2; }
.share-btn.fb:hover { background: #1877F2; color: var(--white); }
.share-btn.zl { background: #E5F0FF; color: #0068FF; }
.share-btn.zl:hover { background: #0068FF; color: var(--white); }
.share-btn.link { background: #E8F5E9; color: #43A047; }
.share-btn.link:hover { background: #43A047; color: var(--white); }

/* ---------- Tour Detail ---------- */
.tour-detail-hero {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.tour-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}
.tour-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.tour-detail-sidebar {
    position: sticky;
    top: 90px;
}
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(200, 152, 46, 0.1);
}

@media (max-width: 768px) {
    .tour-detail-grid { grid-template-columns: 1fr; }
    .tour-detail-hero { height: 280px; }
    .article-title { font-size: 1.8rem; }
}

/* ---------- Language Toggle ---------- */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.lang-toggle:hover {
    background: rgba(255,255,255,0.25);
    color: var(--white) !important;
    transform: scale(1.05);
}
.lang-flag {
    font-size: 1rem;
    line-height: 1;
}
.lang-text {
    letter-spacing: 1px;
}
.lang-toggle-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-light);
    color: var(--brand) !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}
.lang-toggle-mobile:hover {
    background: var(--brand);
    color: var(--white) !important;
}

/* ---------- Flight Route Tabs ---------- */
.flight-route-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8px;
}
.route-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
    background: var(--white);
    border: 2px solid rgba(200, 152, 46, 0.15);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}
.route-tab:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.route-tab.active {
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    color: var(--white);
    border-color: var(--brand);
    box-shadow: 0 4px 15px rgba(200, 152, 46, 0.35);
}
.route-tab.active:hover {
    color: var(--white);
}
.route-tab i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .flight-route-tabs {
        gap: 6px;
    }
    .route-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 5px;
    }
}

/* ---------- Nav Logo Image ---------- */
.nav-logo-img {
    height: 52px;
    max-height: 52px;
    width: auto;
    max-width: 52px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

/* ---------- Team Section ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(44,36,23,0.06);
    border: 1px solid rgba(200, 152, 46, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-gold-start), var(--brand-gold-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.team-card:hover::before {
    transform: scaleX(1);
}
.team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}
.team-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brand-light);
    transition: var(--transition);
}
.team-card:hover .team-avatar {
    border-color: var(--brand);
    transform: scale(1.05);
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-avatar-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.team-card h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text-dark);
}
.team-role {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.team-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-avatar { width: 100px; height: 100px; }
}

/* ---------- Team / About Page — key2russia.ru/about clone ---------- */

.team-profile-hero {
    position: relative;
    overflow: hidden;
    background: var(--brand-lightest);
    min-height: 620px;
}
.team-profile-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,253,245,0.98) 0%, rgba(255,253,245,0.92) 45%, rgba(44,36,23,0.68) 100%),
        url('/assets/images/hero_banner.png') center/cover no-repeat;
}
.team-profile-hero-bg::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--brand-lightest));
}
.team-profile-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 110px;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
    gap: 72px;
    align-items: center;
}
.team-profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.team-profile-kicker::before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--brand);
}
.team-profile-copy h1 {
    font-size: clamp(2.35rem, 4.6vw, 4.4rem);
    line-height: 1.12;
    margin: 0 0 22px;
    max-width: 820px;
}
.team-profile-copy h1 span {
    color: var(--brand);
}
.team-profile-copy p {
    max-width: 660px;
    margin: 0 0 32px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-body);
}
.team-profile-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.team-profile-media {
    position: relative;
    min-height: 500px;
}
.team-profile-main-photo {
    position: absolute;
    right: 26px;
    top: 0;
    width: min(76%, 390px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(20,16,10,0.26);
    border: 8px solid rgba(255,255,255,0.88);
}
.team-profile-main-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}
.team-profile-mini-photo {
    position: absolute;
    overflow: hidden;
    border-radius: 14px;
    border: 6px solid rgba(255,255,255,0.9);
    box-shadow: 0 18px 50px rgba(20,16,10,0.22);
    background: #fff;
}
.team-profile-mini-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-profile-mini-photo-1 {
    left: 0;
    top: 54px;
    width: 170px;
    height: 150px;
    transform: rotate(-5deg);
}
.team-profile-mini-photo-2 {
    left: 24px;
    bottom: 44px;
    width: 210px;
    height: 166px;
    transform: rotate(4deg);
}
.team-profile-mini-photo-3 {
    right: 0;
    bottom: 0;
    width: 160px;
    height: 148px;
    transform: rotate(-3deg);
}
.team-trust-strip {
    position: relative;
    z-index: 4;
    margin-top: -54px;
    padding: 0 24px 42px;
}
.team-trust-strip-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.team-trust-strip span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(200,152,46,0.14);
    border-radius: var(--radius);
    box-shadow: 0 10px 32px rgba(44,36,23,0.07);
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}
.team-trust-strip i {
    color: var(--brand);
    flex-shrink: 0;
}

/* ── ① Intro Tagline ── */
.k2r-intro {
    padding: 80px 0;
    background: #fff;
}

.k2r-intro-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center !important;
}

.k2r-intro h2 {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    text-align: center !important;
    letter-spacing: 1px;
}

.k2r-intro h2 span {
    color: var(--brand);
}

.k2r-intro-subtitle {
    margin-top: 28px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.k2r-intro-credentials {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-top: 20px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(200,152,46,0.08) 0%, rgba(200,152,46,0.04) 100%);
    border: 1px solid rgba(200,152,46,0.18);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.k2r-intro-credentials .cred-dot {
    color: var(--brand);
    font-weight: 700;
}

.k2r-intro-credentials i {
    color: var(--brand);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .k2r-intro-credentials {
        font-size: 0.78rem;
        padding: 12px 20px;
        gap: 6px 14px;
        border-radius: 16px;
    }
    .k2r-intro-subtitle {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .k2r-intro-credentials {
        flex-direction: column;
        gap: 6px;
        border-radius: 12px;
        text-align: center;
    }
    .k2r-intro-credentials .cred-dot {
        display: none;
    }
}

/* ── ② Director Bio Section ── */

.k2r-director {
    background: var(--brand-lightest);
    padding: 72px 0 88px;
}

.k2r-director-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

.k2r-director-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(44,36,23,0.12);
    border: 1px solid rgba(200,152,46,0.16);
}

.k2r-director-photo img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.k2r-director-nophoto {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.35);
}

.k2r-director-bio {}

.k2r-director-hi {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-left: 22px;
}
.k2r-director-hi::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.22em;
    width: 4px;
    border-radius: 99px;
    background: var(--brand);
}

.k2r-director-hi strong {
    color: var(--brand);
    display: block;
    font-size: 1.9rem;
}

.k2r-director-bio p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-body);
    margin: 0;
}

/* ── Team Grid Section ── */
.k2r-team {
    background: linear-gradient(180deg, #f7f8fa 0%, var(--white) 100%);
    padding: 88px 0;
}

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

.k2r-team-header {
    margin-bottom: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.k2r-team-header h2 {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.k2r-team-header p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
    max-width: 600px;
    line-height: 1.7;
}

/* ── 3-Column Card Grid ── */
.k2r-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.k2r-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(200,152,46,0.12);
    box-shadow: 0 8px 26px rgba(44,36,23,0.055);
}

.k2r-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200,152,46,0.32);
}

.k2r-card-img {
    width: 100%;
    aspect-ratio: 1.25 / 1;
    overflow: hidden;
}

.k2r-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.k2r-card:hover .k2r-card-img img {
    transform: scale(1.04);
}

.k2r-card-noimg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.4);
}

.k2r-card-body {
    padding: 22px 24px 24px;
}

.k2r-card-body h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.k2r-card-role {
    display: block;
    font-size: 0.78rem;
    color: var(--brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.k2r-card-line {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 0;
}

.k2r-card-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.86rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.k2r-card-contact:hover {
    color: var(--brand);
}

.k2r-card-contact i {
    color: var(--brand);
    font-size: 0.82rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* ── ①b Photo Collage ── */
.k2r-collage {
    padding: 20px 0 40px;
    background: #fff;
    overflow: hidden;
}

.k2r-collage-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    height: 500px;
}

.k2r-collage-photo {
    position: absolute;
    background: #fff;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 4px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.k2r-collage-photo:hover {
    z-index: 10 !important;
    transform: scale(1.05) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.k2r-collage-photo img {
    display: block;
    border-radius: 2px;
    object-fit: cover;
}

/* 5 photos scattered like key2russia */
.k2r-collage-photo-1 {
    top: 10px; left: 5%;
    transform: rotate(-6deg);
    z-index: 3;
}
.k2r-collage-photo-1 img { width: 260px; height: 300px; }

.k2r-collage-photo-2 {
    top: 30px; left: 30%;
    transform: rotate(3deg);
    z-index: 5;
}
.k2r-collage-photo-2 img { width: 280px; height: 280px; }

.k2r-collage-photo-3 {
    top: 0; right: 5%;
    transform: rotate(-4deg);
    z-index: 4;
}
.k2r-collage-photo-3 img { width: 240px; height: 320px; }

.k2r-collage-photo-4 {
    bottom: 20px; left: 12%;
    transform: rotate(5deg);
    z-index: 2;
}
.k2r-collage-photo-4 img { width: 220px; height: 260px; }

.k2r-collage-photo-5 {
    bottom: 10px; right: 15%;
    transform: rotate(-3deg);
    z-index: 1;
}
.k2r-collage-photo-5 img { width: 240px; height: 240px; }

/* ── ④ How We Work — 2 column layout ── */
.k2r-process {
    padding: 88px 0;
    background: var(--white);
}

.k2r-process-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.k2r-process-left {}

.k2r-process-header {
    margin-bottom: 32px;
}

.k2r-process-header h2 {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.k2r-process-header p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.7;
}

/* Process section scattered photos */
.k2r-process-photos {
    position: relative;
    height: 340px;
    margin-top: 16px;
}

.k2r-process-photo {
    position: absolute;
    background: #fff;
    padding: 6px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.k2r-process-photo:hover {
    z-index: 10 !important;
    transform: scale(1.05) !important;
}

.k2r-process-photo img {
    display: block;
    border-radius: 2px;
    object-fit: cover;
}

.k2r-process-photo-1 {
    top: 0; left: 0;
    transform: rotate(-5deg);
    z-index: 2;
}
.k2r-process-photo-1 img { width: 200px; height: 160px; }

.k2r-process-photo-2 {
    top: 20px; right: 20px;
    transform: rotate(4deg);
    z-index: 3;
}
.k2r-process-photo-2 img { width: 190px; height: 150px; }

.k2r-process-photo-3 {
    bottom: 0; left: 30%;
    transform: rotate(-2deg);
    z-index: 1;
}
.k2r-process-photo-3 img { width: 220px; height: 170px; }

/* Process steps - right column */
.k2r-process-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.k2r-step {
    background: #f2f4f7;
    border-radius: 16px;
    padding: 24px 28px;
    position: relative;
    padding-left: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.k2r-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.k2r-step-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.k2r-step h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.k2r-step p {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ── ④ v2 — Vertical Layout: Header on top, 5 cards in horizontal row ── */
.k2r-process-inner-v2 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.k2r-process-header-v2 {
    text-align: center;
    margin-bottom: 56px;
}

.k2r-process-header-v2 h2 {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
    line-height: 1.3;
}

.k2r-process-header-v2 p {
    font-size: 1rem;
    color: var(--text-body);
    margin: 0 auto;
    line-height: 1.7;
    max-width: 640px;
}

.k2r-steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

/* Connecting line behind the number badges */
.k2r-steps-row::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 10px);
    right: calc(10% + 10px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(200, 152, 46, 0.3) 0px,
        rgba(200, 152, 46, 0.3) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 0;
}

.k2r-step-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(200,152,46,0.12);
    box-shadow: 0 8px 28px rgba(44,36,23,0.055);
}

.k2r-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    background: #fff;
}

.k2r-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.k2r-step-card h3 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.4;
    min-height: 2.1em;
}

.k2r-step-card p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
}

/* ── ⑤ Why Choose Us ── */
.k2r-why {
    padding: 88px 0;
    background:
        linear-gradient(135deg, rgba(44,36,23,0.96), rgba(26,26,26,0.98)),
        url('/assets/images/hero_banner.png') center/cover fixed;
}

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

.k2r-why-inner h2 {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 48px;
    text-align: center;
}

.k2r-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.k2r-why-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.k2r-why-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,168,67,0.38);
}

.k2r-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.k2r-why-item h3 {
    font-family: 'Noto Serif', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.k2r-why-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

/* ── Stats ── */
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.team-stat-item {
    padding: 32px 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.team-stat-item:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.team-stat-number {
    font-family: 'Noto Serif', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 6px;
}

.team-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .team-profile-hero-inner {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 72px;
    }
    .team-profile-media {
        min-height: 360px;
        max-width: 640px;
    }
    .team-profile-main-photo {
        left: 180px;
        right: auto;
        width: 300px;
    }
    .team-profile-mini-photo-2 {
        bottom: 22px;
    }
    .team-trust-strip-inner {
        grid-template-columns: 1fr;
    }
    .k2r-intro h2 { font-size: 1.7rem; }
    .k2r-collage-inner { height: 400px; }
    .k2r-collage-photo-1 img, .k2r-collage-photo-2 img, .k2r-collage-photo-3 img,
    .k2r-collage-photo-4 img, .k2r-collage-photo-5 img { width: 200px; height: 220px; }
    .k2r-director-inner { grid-template-columns: 340px 1fr; gap: 40px; }
    .k2r-director-hi { font-size: 1.4rem; }
    .k2r-director-hi strong { font-size: 1.6rem; }
    .k2r-team-grid { grid-template-columns: repeat(2, 1fr); }
    .k2r-process-inner { gap: 40px; }
    .k2r-steps-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .k2r-step-card h3 { font-size: 0.7rem; }
    .k2r-step-card p { font-size: 0.78rem; }
    .k2r-process-header-v2 h2 { font-size: 1.8rem; }
    .k2r-why-grid { grid-template-columns: repeat(2, 1fr); }
    .team-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .team-profile-hero {
        min-height: auto;
    }
    .team-profile-hero-bg {
        background:
            linear-gradient(180deg, rgba(255,253,245,0.98) 0%, rgba(255,253,245,0.92) 72%, rgba(255,253,245,0.98) 100%),
            url('/assets/images/hero_banner.png') center/cover no-repeat;
    }
    .team-profile-hero-inner {
        padding: 58px 20px 86px;
        display: block;
    }
    .team-profile-copy h1 {
        font-size: 2.05rem;
    }
    .team-profile-actions .btn {
        width: 100%;
    }
    .team-profile-media {
        display: none;
    }
    .team-trust-strip {
        margin-top: -38px;
        padding: 0 16px 28px;
    }
    .team-trust-strip span {
        padding: 15px 16px;
        font-size: 0.82rem;
    }
    .k2r-intro { padding: 48px 0; }
    .k2r-intro h2 { font-size: 1.3rem; }
    .k2r-collage-inner { height: 300px; }
    .k2r-collage-photo-4, .k2r-collage-photo-5 { display: none; }
    .k2r-collage-photo-1 img, .k2r-collage-photo-2 img, .k2r-collage-photo-3 img { width: 160px; height: 180px; }
    .k2r-director { padding: 48px 0; }
    .k2r-director-inner { grid-template-columns: 1fr; gap: 32px; }
    .k2r-director-photo { max-width: 320px; margin: 0 auto; }
    .k2r-director-hi { font-size: 1.3rem; text-align: left; }
    .k2r-director-hi strong { font-size: 1.5rem; }
    .k2r-director-bio p { font-size: 0.95rem; line-height: 1.85; }
    .k2r-team { padding: 56px 0; }
    .k2r-team-header { display: block; }
    .k2r-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .k2r-process { padding: 56px 0; }
    .k2r-process-inner { grid-template-columns: 1fr; gap: 32px; }
    .k2r-process-photos { height: 250px; }
    .k2r-process-photo-1 img, .k2r-process-photo-2 img, .k2r-process-photo-3 img { width: 160px; height: 120px; }
    .k2r-step { padding-left: 70px; }
    .k2r-step-badge { width: 40px; height: 40px; font-size: 0.85rem; }
    .k2r-steps-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .k2r-steps-row::before { display: none; }
    .k2r-step-num { width: 48px; height: 48px; font-size: 1rem; }
    .k2r-process-header-v2 h2 { font-size: 1.5rem; }
    .k2r-process-header-v2 { margin-bottom: 36px; }
    .k2r-why { padding: 56px 0; }
    .k2r-why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .team-stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
    .team-profile-kicker { letter-spacing: 1px; }
    .team-profile-copy h1 { font-size: 1.8rem; }
    .k2r-intro h2 { font-size: 1.1rem; }
    .k2r-collage { display: none; }
    .k2r-team-grid { grid-template-columns: 1fr; gap: 20px; }
    .k2r-director-photo { max-width: 280px; }
    .k2r-process-photos { display: none; }
    .k2r-steps-row { grid-template-columns: 1fr; gap: 12px; }
    .k2r-step-card { padding: 20px 16px 18px; }
    .k2r-step-num { width: 44px; height: 44px; font-size: 0.95rem; margin-bottom: 14px; }
    .k2r-process-header-v2 h2 { font-size: 1.3rem; }
    .k2r-why-grid { grid-template-columns: 1fr; }
    .team-stats { grid-template-columns: 1fr; }
}


/* ---------- Partner Logos Carousel ---------- */
.partner-logos-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.partner-logos-wrapper::before,
.partner-logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.partner-logos-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--brand-light), transparent);
}
.partner-logos-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--brand-light), transparent);
}
.partner-logos-track {
    display: flex;
    gap: 40px;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}
.partner-logos-track:hover {
    animation-play-state: paused;
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-logo-item {
    flex-shrink: 0;
}
.partner-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(200, 152, 46, 0.1);
    transition: var(--transition);
    min-width: 140px;
    height: 90px;
}
.partner-logo-box img {
    max-height: 60px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}
.partner-logo-box:hover img {
    transform: scale(1.08);
}
.partner-logo-box:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}
.partner-logo-box span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
    text-align: center;
    white-space: nowrap;
}

/* ---------- Individual Services (Rolim Style) ---------- */
.individual-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ind-service-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(200, 152, 46, 0.12);
    box-shadow: 0 5px 20px rgba(44,36,23,0.045);
    transition: var(--transition);
    align-items: flex-start;
}
.ind-service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--brand);
    transform: translateY(-3px);
}
.ind-service-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-light), rgba(200,152,46,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 1.3rem;
    transition: var(--transition);
}
.ind-service-card:hover .ind-service-icon {
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    color: var(--white);
    transform: scale(1.1);
}
.ind-service-body h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-dark);
}
.ind-service-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 12px;
}
.ind-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.ind-service-link:hover {
    gap: 10px;
    color: var(--brand-dark);
}
.service-price-from {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 2px 0 14px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}
.service-price-from-inline {
    margin: 0 0 12px;
}

/* ---------- Service Price Table ---------- */
.price-section {
    background: var(--white);
}
.price-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 34px;
}
.price-section-head .subtitle {
    display: inline-block;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.price-section-head h2 {
    font-size: 2.3rem;
    margin: 0 0 12px;
}
.price-section-head p {
    max-width: 680px;
    margin: 0;
    color: var(--text-muted);
}
.price-currency-toggle {
    display: inline-flex;
    flex-shrink: 0;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: var(--brand-light);
    border: 1px solid rgba(200,152,46,0.18);
}
.price-currency-toggle button {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    background: transparent;
    color: var(--text-body);
    font-weight: 800;
    cursor: pointer;
    font-family: 'Be Vietnam Pro', sans-serif;
}
.price-currency-toggle button.active {
    background: linear-gradient(135deg, var(--brand-gold-start), var(--brand-gold-end));
    color: var(--white);
    box-shadow: 0 6px 18px rgba(200,152,46,0.26);
}
.price-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.price-table-group {
    background: #fffdf8;
    border: 1px solid rgba(200,152,46,0.14);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(44,36,23,0.055);
}
.price-group-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(200,152,46,0.12);
    background: linear-gradient(180deg, var(--white), var(--brand-lightest));
}
.price-group-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    color: var(--brand);
}
.price-group-header h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}
.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.055);
}
.price-row:last-child {
    border-bottom: 0;
}
.price-row-main strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.94rem;
    margin-bottom: 4px;
}
.price-row-main span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.55;
}
.price-row-value {
    min-width: 170px;
    text-align: right;
}
.price-amount {
    display: block;
    color: var(--brand);
    font-weight: 900;
    font-size: 1rem;
    white-space: nowrap;
}
.price-row-value small {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 2px;
}
.price-section.currency-vnd .price-amount-rub,
.price-section.currency-rub .price-amount-vnd {
    display: none;
}

@media (max-width: 768px) {
    .individual-services-grid { grid-template-columns: 1fr; }
    .ind-service-card { padding: 20px; gap: 16px; }
    .ind-service-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }
    .price-section-head {
        display: block;
    }
    .price-currency-toggle {
        margin-top: 20px;
        width: 100%;
    }
    .price-currency-toggle button {
        flex: 1;
    }
    .price-groups {
        grid-template-columns: 1fr;
    }
    .price-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .price-row-value {
        min-width: 0;
        text-align: left;
    }
}

/* ---------- Experience Gallery ---------- */
.experience-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
}
.experience-grid .exp-card:first-child {
    grid-row: 1 / 3;
}
.exp-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.exp-card:hover img {
    transform: scale(1.08);
}
.exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 23, 0.85) 0%, rgba(44, 36, 23, 0.1) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.exp-card:hover .exp-card-overlay {
    opacity: 1;
}
.exp-card-content h4 {
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
}
.exp-card-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .experience-grid .exp-card:first-child {
        grid-row: auto;
        grid-column: 1 / 3;
    }
    .exp-card { height: 220px; }
    .exp-card-overlay { opacity: 1; }
}
@media (max-width: 480px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .experience-grid .exp-card:first-child {
        grid-column: auto;
    }
}

/* ---------- Experience Masonry (Testimonials Page) ---------- */
.experience-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.exp-masonry-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}
.exp-masonry-item.exp-large {
    height: 340px;
}
.exp-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.exp-masonry-item:hover img {
    transform: scale(1.08);
}
.exp-masonry-item .exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 23, 0.85) 0%, rgba(44, 36, 23, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.exp-masonry-item:hover .exp-card-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .experience-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .exp-masonry-item, .exp-masonry-item.exp-large { height: 240px; }
    .exp-masonry-item .exp-card-overlay { opacity: 1; }
}
@media (max-width: 480px) {
    .experience-masonry {
        grid-template-columns: 1fr;
    }
}

/* Mobile polish pack */
@media (max-width: 760px) {
    body { padding-bottom: 74px; }
    .top-bar { font-size: .72rem; }
    .top-bar .container { padding: 0 16px !important; }
    .nav-container { height: 62px; padding: 0 16px; }
    .nav-logo { font-size: 1.08rem; min-width: 0; }
    .nav-logo-img { width: 38px; height: 38px; }
    .hero { min-height: auto; padding: 72px 0 54px; }
    .hero-content { width: min(100% - 32px, 680px); padding: 0 16px; margin: 0 auto; }
    .hero-content h1 { font-size: clamp(1.9rem, 9vw, 3.2rem); line-height: 1.12; word-break: keep-all; overflow-wrap: break-word; }
    .hero-content p { font-size: .92rem; line-height: 1.7; }
    .hero-badges { gap: 8px; }
    .hero-badge { font-size: .74rem; padding: 8px 12px; gap: 7px; }
    .hero-badge i { width: 26px; height: 26px; font-size: 0.68rem; border-radius: 6px; }
    .hero-btns, .cta-banner .container > div, .cta-banner div[style*="display:flex"] { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; justify-content: center; }
    .section { padding: 48px 16px; }
    .container { padding: 0 16px; }
    .section-header h2, .about-text h2 { font-size: clamp(1.55rem, 7vw, 2.2rem) !important; }
    .section-header p { font-size: 0.92rem; padding: 0 4px; }
    .about-grid, .contact-grid, .tour-detail-grid { grid-template-columns: 1fr !important; gap: 24px; }
    .tour-grid, .service-grid, .individual-services-grid, .partner-grid, .team-grid, .commitment-grid { grid-template-columns: 1fr !important; }
    .tour-card-footer { flex-direction: column; align-items: stretch; gap: 12px; }
    .tour-card-body { padding: 20px 16px; }
    .ind-service-card { padding: 18px 16px; gap: 14px; }
    .ind-service-body h3 { font-size: 0.95rem; }
    .ind-service-body p { font-size: 0.84rem; }
    .commitment-card { padding: 28px 20px; }
    .commitment-card h3 { font-size: 1rem; }
    .commitment-card p { font-size: 0.84rem; }
    .flight-route-tabs { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 8px; }
    .route-tab { flex: 0 0 auto; white-space: nowrap; }
    .page-banner { min-height: 285px; padding: 60px 16px; }
    .page-banner-content { width: min(100% - 32px, 680px); }
    .page-banner-content h1 { font-size: clamp(1.7rem, 9vw, 2.8rem); }
    .cta-banner { padding: 48px 16px; }
    .cta-banner h2 { font-size: 1.5rem; }
    .cta-banner p { font-size: 0.92rem; padding: 0 8px; }
    .floating-buttons { left: 10px; right: 10px; bottom: 10px; flex-direction: row; justify-content: center; padding: 8px; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid rgba(0,0,0,.08); backdrop-filter: blur(10px); }
    .float-btn { width: 46px; height: 46px; }
    .back-to-top { display: none !important; }
    .footer-grid { grid-template-columns: 1fr !important; }
    .site-footer { padding: 48px 16px 0; }
    .footer-col h4 { font-size: 0.92rem; }
    .footer-col p, .footer-col a { font-size: 0.84rem; }
    .footer-bottom { font-size: 0.76rem; padding: 16px 4px; }
    .about-text h2 { padding: 0 4px; }
    .about-text p { font-size: 0.92rem; padding: 0 4px; }
    .about-features li { font-size: 0.9rem; padding: 6px 4px; }
    .stat-card { padding: 16px; gap: 14px; }
    .stat-card .stat-label { font-size: 0.82rem; }
    .stat-card .stat-number { font-size: 0.92rem; }
    .contact-form { padding: 20px 16px; }
    .form-group label { font-size: 0.85rem; }
    .form-group input, .form-group textarea, .form-group select { font-size: 0.9rem; padding: 10px 14px; }
}

/* Subtle premium motion */
.hero-bg {
    animation: style1HeroBreath 14s ease-in-out infinite alternate;
}
.hero-badge {
    animation: style1BadgeFloat 4.5s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay: .6s; }
.hero-badge:nth-child(3) { animation-delay: 1.2s; }
.tour-card,
.service-card,
.ind-service-card,
.team-card,
.commitment-card {
    transition: transform .28s ease, box-shadow .28s ease;
}
.tour-card:hover,
.service-card:hover,
.ind-service-card:hover,
.team-card:hover,
.commitment-card:hover {
    transform: translateY(-7px);
}
.float-btn {
    animation: style1ContactPulse 2.8s ease-in-out infinite;
}
.float-btn:nth-child(2) { animation-delay: .35s; }
.float-btn:nth-child(3) { animation-delay: .7s; }
.float-btn:nth-child(4) { animation-delay: 1.05s; }
@keyframes style1HeroBreath {
    to { transform: scale(1.055); }
}
@keyframes style1BadgeFloat {
    50% { transform: translateY(-4px) scale(1.02); }
}
@keyframes style1ContactPulse {
    50% { transform: translateY(-4px) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg,
    .hero-badge,
    .float-btn {
        animation: none !important;
    }
}

/* ---------- Image Gallery Lightbox ---------- */
[data-lightbox] { cursor: zoom-in; }
.abc-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(255,253,245,0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity .25s ease;
}
.abc-lightbox.open {
    display: block;
    opacity: 1;
    animation: abcLbFadeIn .25s ease both;
}
@keyframes abcLbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.abc-lb-shell {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: 64px 1fr auto;
    color: var(--text-dark);
    font-family: 'Be Vietnam Pro', sans-serif;
}
.abc-lb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.abc-lb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--text-dark);
}
.abc-lb-brand img {
    height: 36px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}
.abc-lb-brand em {
    font-style: normal;
    color: var(--brand);
    font-weight: 500;
    margin-left: 4px;
}
.abc-lb-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    background: var(--brand-lightest);
    color: var(--text-dark);
    font-size: 1.05rem;
    cursor: pointer;
    transition: all .2s;
}
.abc-lb-close:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: rotate(90deg); }
.abc-lb-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
}
.abc-lb-sidebar {
    background: var(--brand-lightest);
    border-right: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.abc-lb-sidebar-head {
    padding: 14px 18px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
}
.abc-lb-sidebar-head i { color: var(--brand); }
.abc-lb-thumbs {
    list-style: none;
    margin: 0;
    padding: 8px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}
.abc-lb-thumbs::-webkit-scrollbar { width: 6px; }
.abc-lb-thumbs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 3px; }
.abc-lb-thumb {
    display: grid;
    grid-template-columns: 32px 64px 1fr;
    align-items: center;
    gap: 10px;
    padding: 8px;
    margin-bottom: 4px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    border: 1px solid transparent;
    background: #ffffff;
}
.abc-lb-thumb:hover { background: var(--brand-light); }
.abc-lb-thumb.active {
    background: var(--brand-light);
    border-color: var(--brand);
    box-shadow: 0 0 0 1px rgba(200,152,46,0.35) inset;
}
.abc-lb-thumb-num {
    font-family: 'Inter', monospace;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 600;
}
.abc-lb-thumb.active .abc-lb-thumb-num { color: var(--brand-dark); }
.abc-lb-thumb-pic {
    width: 64px;
    height: 44px;
    border-radius: 5px;
    overflow: hidden;
    background: #e7e2d4;
}
.abc-lb-thumb-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.abc-lb-thumb-title {
    font-size: 0.82rem;
    line-height: 1.3;
    color: var(--text-body);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.abc-lb-thumb.active .abc-lb-thumb-title { color: var(--text-dark); font-weight: 600; }
.abc-lb-stage {
    position: relative;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
    box-sizing: border-box;
}
.abc-lb-imgwrap {
    position: absolute;
    inset: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
}
.abc-lb-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 18px 50px rgba(44,36,23,0.18), 0 2px 8px rgba(0,0,0,0.06);
    cursor: zoom-in;
    transition: transform .35s ease, opacity .25s ease;
    will-change: transform;
    background: #fff;
}
.abc-lb-img.zoomed { transform: scale(1.8); cursor: zoom-out; }
.abc-lb-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
    border: 3px solid rgba(200,152,46,0.18);
    border-top-color: var(--brand);
    border-radius: 50%;
    animation: abcLbSpin .9s linear infinite;
    display: none;
    pointer-events: none;
}
@keyframes abcLbSpin { to { transform: rotate(360deg); } }
.abc-lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .25s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(44,36,23,0.12);
}
.abc-lb-arrow:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-50%) scale(1.08); }
.abc-lb-arrow-prev { left: 16px; }
.abc-lb-arrow-next { right: 16px; }
.abc-lb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 24px 18px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 -1px 0 rgba(0,0,0,0.04);
}
.abc-lb-info { min-width: 0; flex: 1; }
.abc-lb-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.abc-lb-desc {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.45;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.abc-lb-controls { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.abc-lb-counter {
    font-family: 'Inter', monospace;
    font-size: 0.85rem;
    color: var(--brand-dark);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid rgba(200,152,46,0.35);
    border-radius: 6px;
    background: var(--brand-light);
}
.abc-lb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: var(--brand-lightest);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-dark);
    border-radius: 7px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
}
.abc-lb-btn:hover { background: var(--brand-light); border-color: var(--brand); color: var(--brand-dark); }
.abc-lb-btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.abc-lb-btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }

@media (max-width: 900px) {
    .abc-lb-shell { grid-template-rows: 56px 1fr auto; }
    .abc-lb-header { padding: 10px 14px; }
    .abc-lb-brand img { height: 30px; }
    .abc-lb-brand em { display: none; }
    /* IMPORTANT: switch from grid to flex column.
       In grid, `order` only changes paint order, NOT which cell items occupy,
       so stage was stuck in the small auto row. Flex `order` reorders for real. */
    .abc-lb-body {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .abc-lb-stage {
        order: 1;
        flex: 1 1 0;
        width: 100%;
        min-height: 0;
        min-width: 0;
    }
    .abc-lb-imgwrap { inset: 8px; }
    .abc-lb-sidebar {
        order: 2;
        flex: 0 0 116px;
        width: 100%;
        min-width: 0;
        border-right: none;
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    .abc-lb-sidebar-head { display: none; }
    .abc-lb-thumbs {
        display: flex;
        padding: 10px 12px;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }
    .abc-lb-thumb {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 80px;
        flex-shrink: 0;
        gap: 0;
        padding: 4px 6px 6px;
        text-align: center;
        scroll-snap-align: center;
    }
    .abc-lb-thumb-num {
        font-size: 0.65rem;
        order: 3;
        margin-top: auto;
        line-height: 1;
    }
    .abc-lb-thumb-pic { width: 100%; height: 46px; order: 1; flex-shrink: 0; }
    .abc-lb-thumb-title {
        font-size: 0.68rem;
        line-height: 1.15;
        -webkit-line-clamp: 1;
        order: 2;
        max-width: 100%;
        margin-top: 4px;
    }
    .abc-lb-arrow {
        width: 36px; height: 36px; font-size: 0.9rem;
        background: rgba(255,255,255,0.86);
        box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    }
    .abc-lb-arrow-prev { left: 8px; }
    .abc-lb-arrow-next { right: 8px; }
    .abc-lb-footer {
        flex-direction: column;
        padding: 10px 14px 14px;
        gap: 8px;
        align-items: stretch;
    }
    .abc-lb-info { text-align: center; }
    .abc-lb-title { white-space: normal; font-size: 0.92rem; }
    .abc-lb-desc { -webkit-line-clamp: 2; font-size: 0.76rem; }
    .abc-lb-controls {
        width: 100%;
        justify-content: space-between;
        gap: 6px;
    }
    .abc-lb-controls .abc-lb-counter {
        font-size: 0.78rem;
        padding: 5px 9px;
        flex-shrink: 0;
    }
    .abc-lb-btn { padding: 7px 10px; font-size: 0.74rem; flex: 0 0 auto; }
    .abc-lb-btn span { display: none; }
    .abc-lb-img.zoomed { transform: scale(1.6); }
}
@media (max-width: 480px) {
    .abc-lb-imgwrap { inset: 6px 4px; }
    .abc-lb-thumb { width: 72px; padding: 3px 4px 5px; }
    .abc-lb-thumb-pic { height: 40px; }
    .abc-lb-controls { gap: 4px; }
    .abc-lb-btn { padding: 6px 9px; font-size: 0.72rem; }
    .abc-lb-arrow { width: 32px; height: 32px; font-size: 0.8rem; }
    .abc-lb-arrow-prev { left: 4px; }
    .abc-lb-arrow-next { right: 4px; }
}
