/* Map Balloon & Filters */


.map-filters .btn.active,
.map-filters .btn:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}



.map-balloon-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 12px;
}

.map-balloon-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-primary);
    line-height: 1.2;
}









.ymaps-2-1-79-balloon__content {
    padding: 12px !important;
    border-radius: 30px;
}

.ymaps-2-1-79-balloon {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: none;
}

/* Variables */
:root {
    --primary: #000000;
    --secondary: #1A1A1A;
    --accent: #0f4c81;
    /* Deep sophisticated blue */
    --accent-light: #2a6fae;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-main: #333333;
    --text-muted: #666666;
    --border: #000000;
    --transition: all 0.3s ease;
    --shadow: none;
    --shadow-hover: none;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: -0.03em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
}

.section-padding {
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.accent-text {
    color: var(--accent) !important;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--primary);
}

.bg-accent {
    background-color: var(--accent);
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;

    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary);
    font-weight: 800;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);

    border-color: var(--accent);
}

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

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.sm-btn {
    padding: 10px 20px;
    font-size: 14px;
}

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

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;

    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.logo-text .accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Sections Global */
.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;

    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 0 auto 30px;
}

.title-separator.left {
    margin-left: 0;
}

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

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    clip-path: inset(0); /* Enables fixed parallax clipping */
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    pointer-events: none;
}

.hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.3) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-text-box {
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;

    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent);
    /* Dark blue like the request above */
    color: white;
    padding: 2px 18px 4px;
    /* Reduced padding */
    border-radius: 30px;
    font-size: 0.85em;
    /* Scale to 85% of surrounding text */
    transform: rotate(-2deg);
    position: relative;
    top: -2px;
    /* Pull up just a tiny bit */
    margin-left: 5px;
    font-weight: 800;
    text-transform: none;
    /* keep lowercase 'за 1 день' */
    letter-spacing: normal;
    white-space: nowrap;
    vertical-align: middle;
    /* Align middle prevents pushing lines */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Soft shadow for better visual separation */
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    max-width: 800px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
}

.stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: var(--white);
    border: none;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.step-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
    border-color: var(--white);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: rgba(15, 76, 129, 0.1);
    line-height: 1;
}

.step-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


/* Advantages */
.advantages-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.advantages-text {
    flex: 1;
}

.advantage-list {
    margin-top: 40px;
}

.advantage-list li {
    display: flex;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.adv-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    box-shadow: none;
    flex-shrink: 0;
    margin-right: 20px;
}

.adv-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.adv-content p {
    font-size: 15px;
    color: var(--text-muted);
}

.advantages-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
}

.rounded-shadow {
    border-radius: 30px;
    box-shadow: none;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--accent);
    color: var(--white);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
}

.exp-num {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Tours Grid */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tour-card {
    background: var(--white);
    border: none;
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.tour-card:hover {
    box-shadow: none;
    border-color: var(--accent);
}

.tour-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 76, 129, 0.05);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.tour-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.tour-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.tour-features li {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tour-features i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 12px;
}

/* Reviews */
.reviews-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    margin-top: 50px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--secondary);
    /* For desktop, ensure it acts more like a grid if there's enough space */
    justify-content: stretch;
}

.reviews-slider::-webkit-scrollbar {
    height: 8px;
}

.reviews-slider::-webkit-scrollbar-track {
    background: var(--secondary);
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: var(--accent);
}

.review-card {
    flex: 1;
    /* Make them all perfectly equal width */
    min-width: 320px;
    white-space: normal;
    scroll-snap-align: start;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #eaeaea;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.review-rating {
    color: #FFC107;
    font-size: 10px;
    /* Sightly smaller to ensure they fit */
    white-space: nowrap;
    /* Forces stars to stay in one line */
    flex-shrink: 0;
    /* Prevents squeezing */
}

.review-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    font-style: italic;
}

/* Trust Section */
.trust-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.trust-image,
.trust-text {
    flex: 1;
}

.trust-stats {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.trust-stat-box {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.trust-icon {
    font-size: 30px;
    color: var(--accent);
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

.trust-stat-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    margin-bottom: 5px;
}

.trust-stat-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Tariffs */





.pricing-card:hover {
    box-shadow: none;
    transform: translateY(-10px);
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}



.pricing-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.price {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 13px;
    color: var(--text-muted);
}



.pricing-features li {
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.pricing-features i {
    margin-top: 3px;
    margin-right: 12px;
    color: var(--accent);
}

.pricing-features i.fa-times {
    color: #ccc;
}

.text-muted {
    color: #999 !important;
}

/* Booking Form */
.form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-control {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: none;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.lead-form p.privacy-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: none;
    }

    70% {
        box-shadow: none;
    }

    100% {
        box-shadow: none;
    }
}

.form-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 60px;
    color: #25D366;
    margin-bottom: 20px;
}

/* FAQ */
.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    margin-bottom: 15px;
    border-radius: 30px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 15px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-desc {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
}

.footer-links i {
    width: 20px;
    color: var(--accent);
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: var(--white);
    transition: var(--transition);
}

.social-links a.tg-footer-link {
    background-color: transparent;
    /* Telegram Blue */
}

.social-links a.tg-footer-link:hover {
    background-color: transparent;
    transform: translateY(-3px);
}

.social-links a.max-footer-link {
    background-color: transparent;
    /* No background for logo */
    overflow: hidden;
}

.social-links a.max-footer-link:hover {
    background-color: transparent;
    transform: scale(1.1);
}

/* Fallback hover for any other links added in future */
.social-links a:not(.tg-footer-link):not(.max-footer-link):hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

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

/* Floating Messengers */
.floating-messengers {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: none;
    transition: var(--transition);
}

.float-btn.max {
    background-color: transparent;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.float-btn.max:hover {
    background-color: transparent;
    transform: scale(1.1);
}

.max-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: normal;
    /* Override global multiply blend */
}

.max-footer-icon {
    width: 40px;
    /* Fill the 40px a tag container */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: normal;
    /* Prevent turning black on dark backgrounds */
}

.float-btn.tg {
    background-color: transparent;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.float-btn.tg:hover {
    background-color: transparent;
    transform: scale(1.1);
}

/* Fixed CTA Button */
.fixed-cta-bar {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 98;
    transition: transform 0.4s ease;
    background: none;
    border: none;
    padding: 0;
}

.fixed-cta-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.fixed-cta-bar .cta-text {
    display: none;
}

.fixed-cta-bar .btn {
    padding: 16px 36px;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(15, 76, 129, 0.4);
}

.fixed-cta-bar .btn:hover {
    box-shadow: 0 12px 40px rgba(15, 76, 129, 0.6);
    transform: translateY(-2px);
}

body.cta-visible .floating-messengers {
    bottom: 90px;
}

/* Responsive Options */
@media (max-width: 991px) {
    .section-title {
        font-size: 36px;

        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.1;
    }

    .hero-title {
        font-size: 48px;

        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.05;
        letter-spacing: -0.05em;
    }

    .advantages-container,
    .trust-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        /* Reduced gap from 60px to 30px on mobile */
    }

    .title-separator.left {
        margin: 0 auto 30px;
    }

    .advantages-image {
        margin-top: 0px;
        /* Removed 50px margin since we have gap */
    }

    .pricing-grid,
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;

        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.1;
    }

    .hero-title {
        font-size: 36px;

        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.05;
        letter-spacing: -0.05em;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links,
    .nav-contact {
        display: none;
    }

    .mobile-menu-btn {}

    .step-card {
        padding: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .pricing-grid,
    .tour-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .section-padding {
        border-bottom: 1px solid var(--border);
        padding: 60px 0;
    }

    .experience-badge {
        bottom: -15px;
        left: -15px;
        padding: 15px;
    }

    .exp-num {
        font-size: 28px;
    }
}

/* Map */


/* Интеграция картинок с белым фоном */
img {
    mix-blend-mode: multiply;
    border-radius: 30px;
}

/* Comprehensive Mobile Fixes */
@media (max-width: 768px) {
    .hero-title {
        word-break: break-word;
    }

    .section-title {
        word-break: break-word;
    }

    .stat-item {
        text-align: center;
    }

    .nav-container {
        padding: 10px 0;
    }

    .floating-messengers {
        bottom: 15px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }





    .article-image {
        height: 160px;
    }

    .article-content {
        padding: 20px;
    }

    .article-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .article-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Articles Section */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Modal Booking Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    padding: 0;
    /* Remove inner padding to prevent double-boxing */
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content .form-container {
    border: none;
    /* Remove inner border */
    padding: 40px;
    /* Single unified padding */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}


@media (max-width: 768px) {
    .modal-content .form-container {
        padding: 30px 20px;
        /* Reduced unified padding on mobile */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.article-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

/* Limit to 6 articles initially */
.article-grid .article-card:nth-child(n+7) {
    display: none;
}

/* Show all articles when toggled */
.article-grid.show-all .article-card:nth-child(n+7) {
    display: flex;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.article-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-category {
    color: var(--accent);
    font-weight: 800;
}

.article-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: none;
    letter-spacing: normal;
}

.article-content h3 a {
    color: var(--primary);
    transition: var(--transition);
}

.article-content h3 a:hover {
    color: var(--accent);
}

.article-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 15px;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

/* Article Page Layout */
.article-page {
    padding-top: 130px;
    padding-bottom: 80px;
}

.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: 42px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-main);
}

.article-body h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 25px;
}

.article-body h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: none;
}

.article-body p {
    margin-bottom: 25px;
}

.article-body ul {
    margin-bottom: 30px;
    padding-left: 0;
}

.article-body ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
}

.article-body ul li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.article-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
    opacity: 0.2;
}

.article-conversion {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.article-conversion h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 900;
}

.article-conversion p {
    margin-bottom: 25px;
    font-size: 16px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.back-link:hover {
    color: var(--accent);
}

/* Expert Profile */
.expert-profile {
    background-color: var(--white);
}

.expert-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(15, 76, 129, 0.02);
    border-radius: 30px;
    padding: 60px;
    border: none;
}

.expert-image-col {
    flex: 0 0 350px;
}

.expert-image-col img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.expert-content-col {
    flex: 1;
}

.expert-bio {
    font-size: 18px;
    line-height: 1.6;
    margin: 25px 0;
}

.expert-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.expert-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
}

.expert-features i {
    color: var(--accent);
    margin-top: 5px;
}

@media (max-width: 992px) {
    .expert-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
        text-align: center;
    }

    .expert-image-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .expert-features li {
        text-align: left;
    }
}

/* ===== COMPREHENSIVE MOBILE OPTIMIZATION ===== */

/* Tablet */
@media (max-width: 991px) {
    .pricing-card.popular {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Hero — compact */
    .hero {
        min-height: auto;
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        padding-top: 20px;
    }

    .stat-num {
        font-size: 22px;
    }

    .stat-text {
        font-size: 10px;
        margin-top: 2px;
    }

    /* Sections — tight */
    .section-padding {
        padding: 35px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-tag {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .title-separator {
        margin-bottom: 15px;
    }

    /* Steps — compact 2x2 */
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 20px;
    }

    .steps-container .step-card:nth-child(5) {
        grid-column: span 2;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .step-card {
        padding: 12px 10px;
        border-radius: 30px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .step-icon {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .step-card h3 {
        font-size: 13px;
        margin-bottom: 5px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .step-card p {
        font-size: 11px;
        line-height: 1.4;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .step-number {
        font-size: 24px;
        top: 5px;
        right: 8px;
    }

    /* Advantages */
    .advantage-list {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .advantage-list li {
        margin-bottom: 0px;
        flex-direction: column;
        background: var(--white);
        padding: 15px 12px;
        border-radius: 30px;
        border: none;
        align-items: center;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .advantage-list li:nth-child(5) {
        grid-column: span 2;
        flex-direction: row;
        text-align: left;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .advantage-list li:nth-child(5) .adv-icon {
        margin-right: 15px;
        margin-bottom: 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .adv-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 0;
        margin-bottom: 10px;
        flex-shrink: 0;
    }

    .adv-content h4 {
        font-size: 13px;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .adv-content p {
        font-size: 11px;
        line-height: 1.3;
    }

    /* Tour Grid — compact 2x2 */
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 20px;
    }

    .tour-card {
        padding: 15px 12px;
        border-radius: 30px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .tour-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 10px;
        border-radius: 30px;
    }

    .tour-card h3 {
        font-size: 13px;
        margin-bottom: 6px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .tour-card p {
        font-size: 11px;
        margin-bottom: 8px;
        line-height: 1.4;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .tour-features li {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .tour-features i {
        font-size: 10px;
        margin-right: 6px;
    }

    /* Pricing */







    .pricing-header h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .price {
        font-size: 26px;
        margin-bottom: 5px;
    }

    .pricing-features li {
        font-size: 13px;
        margin-bottom: 8px;
    }



    /* Reviews */
    .reviews-slider {
        margin-top: 20px;
        gap: 12px;
    }

    .review-card {
        min-width: 260px;
        width: 260px;
        padding: 15px;
        border-radius: 30px;
    }

    .review-text {
        font-size: 13px;
    }

    .reviewer-info h4 {
        font-size: 14px;
    }

    /* Expert */
    .expert-card {
        padding: 20px 15px;
        gap: 20px;
        border-radius: 30px;
    }

    .expert-image-col {
        max-width: 200px;
    }

    .expert-bio {
        font-size: 14px;
        margin: 15px 0;
    }

    .expert-features li {
        font-size: 13px;
        margin-bottom: 10px;
        gap: 10px;
    }

    /* Trust */
    .trust-container {
        gap: 20px;
    }

    .trust-stat-box {
        padding: 15px 20px;
        border-radius: 30px;
        display: flex;
        flex-direction: row;
        text-align: left;
        align-items: center;
        background: var(--white);
        border: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .trust-icon {
        font-size: 26px;
        margin-right: 15px;
        margin-bottom: 0;
        width: 40px;
        text-align: center;
    }

    .trust-stat-content {
        flex: 1;
        text-align: center;
    }

    .trust-stat-content h3 {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .trust-stat-content p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Booking Form */
    .form-container {
        padding: 20px 15px;
        border-radius: 30px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .form-control {
        padding: 12px;
        font-size: 14px;
        border-radius: 30px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* FAQ */
    .faq-accordion {
        margin-top: 20px;
    }

    .faq-item {
        margin-bottom: 8px;
        border-radius: 30px;
    }

    .faq-question {
        padding: 14px 15px;
    }

    .faq-question h3 {
        font-size: 13px;
    }

    .faq-answer p {
        padding: 0 15px 12px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding-top: 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-desc {
        font-size: 12px;
    }

    .footer-links li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        font-size: 11px;
    }

    /* Floating Buttons */
    .floating-messengers {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .max-icon {
        width: 44px;
        height: 44px;
    }

    /* Fixed CTA */
    .fixed-cta-bar {
        bottom: 12px;
    }

    .fixed-cta-bar .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    body.cta-visible .floating-messengers {
        bottom: 65px;
    }

    /* Article Grid — compact 2x2 */
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .article-card {
        border-radius: 30px;
    }

    .article-image {
        height: 90px;
    }

    .article-content {
        padding: 10px;
    }

    .article-content h3 {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .article-content p {
        font-size: 11px;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .article-meta {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .read-more {
        font-size: 10px;
    }

    /* Article Pages */
    .article-page {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .article-header h1 {
        font-size: 22px;
        line-height: 1.2;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .article-body {
        font-size: 14px;
        line-height: 1.6;
    }

    .article-body h2 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .article-body h3 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .article-body p {
        margin-bottom: 15px;
    }

    .article-body ul {
        margin-bottom: 15px;
    }

    .article-body ul li {
        margin-bottom: 8px;
    }

    /* Hero Conversion Block on Articles */
    .hero-conversion-block {
        padding: 15px !important;
        margin: 15px 0 !important;
        border-radius: 8px !important;
    }

    .hero-conversion-block h2 {
        font-size: 1.05rem !important;
        margin-bottom: 10px !important;
    }

    .hero-conversion-block p {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
    }

    .hero-conversion-block .btn {
        font-size: 0.9rem !important;
        padding: 10px 16px !important;
    }

    /* Article Conversion Blocks */
    .article-conversion {
        padding: 20px 15px;
        margin: 25px 0;
        border-radius: 30px;
    }

    .article-conversion h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .article-conversion p {
        font-size: 14px;
    }

    /* Back Link */
    .back-link {
        font-size: 14px;
        margin-bottom: 25px;
        display: inline-flex;
    }

    /* Inline blocks in articles */
    .article-body div[style*="padding: 25px"],
    .article-body div[style*="padding: 20px"] {
        padding: 12px !important;
        border-radius: 8px !important;
    }

    .article-body div[style*="padding: 40px"] {
        padding: 20px !important;
    }

    /* Tables */
    .article-body table {
        font-size: 12px;
    }

    .article-body table th,
    .article-body table td {
        padding: 8px 6px !important;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 80px 0 30px;
    }

    .hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .article-header h1 {
        font-size: 18px;
    }

    .hero-actions .btn {
        font-size: 12px;
        padding: 10px 16px;
    }

    .stat-num {
        font-size: 18px;
    }

    .step-card h3 {
        font-size: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .step-card p {
        font-size: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }


    .fixed-cta-bar .btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    .expert-image-col {
        max-width: 180px;
    }

    .tour-card {
        padding: 15px 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }





    .review-card {
        min-width: 240px;
        width: 240px;
        padding: 12px;
    }
}

.tg-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: normal;
}

.tg-footer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    mix-blend-mode: normal;
}

@media (max-width: 991px) {
    .navbar {
        position: absolute;
    }
}

/* SEO BLOCKS: Breadcrumbs & Related Articles */
.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs .divider {
    color: #ccc;
    font-size: 0.8rem;
}

.breadcrumbs .current {
    color: var(--text-dark);
    font-weight: 500;
}

.related-articles {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed rgba(0, 0, 0, 0.05);
}

.related-articles h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.related-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.related-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.related-card h4 {
    margin: 0 0 15px 0;
    color: var(--primary);
    font-size: 1.1rem;
    line-height: 1.4;
}

.related-card .read-more {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.related-card:hover .read-more {
    text-decoration: underline;
}


/* Fix hash jumping offset for navbar */