:root {
    --primary: #0F4C5C;
    --secondary: #E9F5F8;
    --accent: #F4A261;
    --bg-main: #FCFDFF;
    --bg-alt: #F8FAFB;
    --text-primary: #1A202C;
    --text-muted: #4A5568;
    --border-subtle: rgba(15, 76, 92, 0.1);
    --radius-lg: 32px;
    --radius-md: 24px;
    --transition-main: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

.h-style {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.btn-pill {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-main);
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #166a7e;
    transform: translateY(-2px);
}

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

.btn-outline-custom:hover {
    background-color: var(--overlay);
    border-color: var(--primary);
}

.card-bento {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: transform 0.8s var(--transition-main), box-shadow 0.4s var(--transition-main);
    overflow: hidden;
}

.card-bento:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08);
}

.image-zoom-container {
    overflow: hidden;
}

.image-zoom-container img {
    transition: transform 0.8s var(--transition-main);
}

.card-bento:hover .image-zoom-container img {
    transform: scale(1.05);
}

.glass-nav {
    backdrop-filter: blur(12px);
    background: rgba(252, 253, 255, 0.8);
    border-bottom: 1px solid var(--border-subtle);
}

section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
}

/* ===== header ===== */
.myzkelo-header-block .navbar {
    min-height: 80px;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid rgba(15, 76, 92, 0.1);
}

.myzkelo-header-block .navbar-brand {
    display: flex;
    align-items: center;
    z-index: 10;
}

.myzkelo-header-block .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.myzkelo-header-block .brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0F4C5C;
    letter-spacing: -0.02em;
}

.myzkelo-header-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #1A202C !important;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.myzkelo-header-block .nav-link:hover {
    color: #0F4C5C !important;
    transform: translateY(-1px);
}

.myzkelo-header-block .btn-primary {
    background-color: #0F4C5C !important;
    border: none !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.15);
    transition: all 0.3s ease;
}

.myzkelo-header-block .btn-primary:hover {
    background-color: #2A9D8F !important;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(15, 76, 92, 0.25);
}

.myzkelo-header-block .navbar-toggler {
    padding: 0.5rem;
    border: none;
    color: #0F4C5C;
}

.myzkelo-header-block .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

@media (min-width: 992px) {
    .myzkelo-header-block .navbar-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0 !important;
    }

    .myzkelo-header-block .nav-item {
        display: flex;
        align-items: center;
    }

    .myzkelo-header-block .navbar-collapse {
        background: transparent !important;
    }
}

@media (max-width: 991.98px) {
    .myzkelo-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
        margin-top: 1rem;
    }

    .myzkelo-header-block .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F8FAFB;
    }

    .myzkelo-header-block .navbar-brand {
        margin-left: 0 !important;
    }
}

/* ===== hero ===== */
.hero-block {
    position: relative;
    background-color: #0F4C5C;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-block__bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-block__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-block:hover .hero-block__bg-img {
    transform: scale(1.05);
}

.hero-block__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.8) 0%, rgba(15, 76, 92, 0.4) 100%);
}

.hero-block__label {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #F4A261;
    font-size: 0.875rem;
}

.hero-block__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-block__description {
    font-family: 'Inter', sans-serif;
    color: #E2E8F0;
    font-size: 1.25rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.125rem;
}

.hero-block__btn--primary {
    background-color: #0F4C5C;
    color: #FFFFFF;
    border: 1px solid #0F4C5C;
}

.hero-block__btn--primary:hover {
    background-color: #2A9D8F;
    border-color: #2A9D8F;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.hero-block__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
}

.hero-block__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.js-hero-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .hero-block__title {
        font-size: 1.75rem;
    }

    .hero-block__description {
        font-size: 1.125rem;
    }
}

/* ===== about ===== */
.myzkelo-about {
    background-color: #FCFDFF;
    color: #1A202C;
    overflow: hidden;
}

.myzkelo-about .about-badge {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #F4A261;
    font-weight: 600;
    font-size: 0.875rem;
}

.myzkelo-about .about-heading {
    font-family: 'Outfit', sans-serif;
    color: #0F4C5C;
    font-weight: 600;
    line-height: 1.2;
    font-size: clamp(2rem, 4vw, 3rem);
}

.myzkelo-about .about-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4A5568;
}

.myzkelo-about .btn-primary {
    background-color: #0F4C5C;
    border-color: #0F4C5C;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.myzkelo-about .btn-primary:hover {
    background-color: #2A9D8F;
    border-color: #2A9D8F;
    transform: translateY(-2px);
    shadow: 0 10px 20px rgba(15, 76, 92, 0.2);
}

.myzkelo-about .btn-outline-primary {
    border: 1px solid #0F4C5C;
    color: #0F4C5C;
    background: transparent;
    font-family: 'Outfit', sans-serif;
}

.myzkelo-about .btn-outline-primary:hover {
    background-color: #0F4C5C;
    color: #FFFFFF;
}

.myzkelo-about .about-image-grid {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}

.myzkelo-about .main-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 32px !important;
}

.myzkelo-about .overlay-img-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    transform: translate(10%, 10%);
    z-index: 2;
}

.myzkelo-about .overlay-img-wrapper img {
    height: 300px;
    object-fit: cover;
    border: 8px solid #FFFFFF;
    border-radius: 32px !important;
}

.myzkelo-about .feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(15, 76, 92, 0.05);
    transition: all 0.4s ease;
}

.myzkelo-about .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08);
    border-color: rgba(15, 76, 92, 0.1);
}

.myzkelo-about .feature-icon {
    color: #0F4C5C;
    background: rgba(15, 76, 92, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.myzkelo-about .feature-icon svg {
    width: 24px;
    height: 24px;
}

.myzkelo-about .feature-title {
    font-family: 'Outfit', sans-serif;
    color: #0F4C5C;
    font-weight: 600;
}

.myzkelo-about .feature-text {
    font-family: 'Inter', sans-serif;
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .myzkelo-about .about-image-grid {
        padding: 0;
        margin-top: 3rem;
    }

    .myzkelo-about .main-img-wrapper img {
        height: 350px;
    }

    .myzkelo-about .overlay-img-wrapper {
        display: none;
    }
}

/* ===== routes-preview ===== */
.routes-preview-section {
    background-color: #FCFDFF;
    overflow: hidden;
}

.routes-preview-section .routes-title {
    font-family: 'Outfit', sans-serif;
    color: #0F4C5C;
    font-weight: 600;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.2;
}

.routes-preview-section .routes-subtitle {
    font-family: 'Inter', sans-serif;
    color: #4A5568;
    font-size: 1.125rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.routes-preview-section .route-card {
    background: #FFFFFF;
    border-radius: 28px;
    border: 1px solid rgba(15, 76, 92, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.routes-preview-section .route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08);
}

.routes-preview-section .route-img-wrapper {
    height: 240px;
    overflow: hidden;
}

.routes-preview-section .route-img-wrapper img {
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.routes-preview-section .route-card:hover .route-img-wrapper img {
    transform: scale(1.05);
}

.routes-preview-section .route-name a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #0F4C5C;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.routes-preview-section .route-name a:hover {
    color: #2A9D8F;
}

.routes-preview-section .route-desc {
    font-family: 'Inter', sans-serif;
    color: #4A5568;
    line-height: 1.6;
}

.routes-preview-section .btn-primary-custom {
    background-color: #0F4C5C;
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s ease;
    text-transform: none;
    box-shadow: none;
}

.routes-preview-section .btn-primary-custom:hover {
    background-color: #2A9D8F;
    color: #FFFFFF;
}

.routes-preview-section .btn-share-custom {
    background-color: transparent;
    color: #0F4C5C;
    border: 1px solid rgba(15, 76, 92, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-transform: none;
    box-shadow: none;
}

.routes-preview-section .btn-share-custom:hover {
    background-color: rgba(15, 76, 92, 0.05);
    border-color: #0F4C5C;
}

.routes-preview-section .btn-share-custom svg {
    width: 16px;
    height: 16px;
}

/* ===== services-preview ===== */
.services-preview-block {
    background-color: #FCFDFF;
    overflow: hidden;
}

.services-preview-block .section-title {
    font-family: 'Outfit', sans-serif;
    color: #0F4C5C;
    font-weight: 700;
}

.services-preview-block .section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #4A5568;
    line-height: 1.6;
}

.services-preview-block .service-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(15, 76, 92, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-preview-block .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08) !important;
}

.services-preview-block .service-img-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.services-preview-block .service-img-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.services-preview-block .service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.services-preview-block .price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #F4A261;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
}

.services-preview-block .service-name a {
    color: #0F4C5C;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.services-preview-block .service-name a:hover {
    color: #2A9D8F;
}

.services-preview-block .service-desc {
    color: #4A5568;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.services-preview-block .btn-primary {
    background-color: #0F4C5C;
    border: none;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-preview-block .btn-primary:hover {
    background-color: #2A9D8F;
    transform: scale(1.02);
}

.services-preview-block .modal-content {
    border-radius: 32px;
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.services-preview-block .form-control {
    border-radius: 12px;
    border-color: #E2E8F0;
    font-family: 'Inter', sans-serif;
}

.services-preview-block .form-control:focus {
    border-color: #0F4C5C;
    background-color: #FCFDFF;
}

.services-preview-block .form-label {
    color: #0F4C5C;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 768px) {
    .services-preview-block .section-title {
        font-size: 1.75rem;
    }

    .services-preview-block .section-subtitle {
        font-size: 1rem;
    }
}

/* ===== guides-preview ===== */
#guides-preview {
    background-color: #FCFDFF;
    font-family: 'Inter', sans-serif;
}

#guides-preview .section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #0F4C5C !important;
    letter-spacing: -0.02em;
}

#guides-preview .section-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    color: #4A5568 !important;
}

#guides-preview .guide-card {
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
    cursor: pointer;
}

#guides-preview .large-card {
    min-height: 600px;
}

#guides-preview .small-card {
    min-height: 288px;
}

#guides-preview .guide-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#guides-preview .guide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#guides-preview .guide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 76, 92, 0) 0%, rgba(15, 76, 92, 0.85) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

#guides-preview .guide-card:hover .guide-img {
    transform: scale(1.08);
}

#guides-preview .guide-card:hover {
    box-shadow: 0 20px 40px rgba(15, 76, 92, 0.15);
}

#guides-preview .guide-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

#guides-preview .badge-custom {
    background: #F4A261;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-right: 12px;
}

#guides-preview .guide-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

#guides-preview .btn-primary-custom {
    background-color: #0F4C5C;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

#guides-preview .btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

#guides-preview .guide-card:hover .btn-primary-custom {
    background-color: #2A9D8F;
    transform: translateY(-2px);
}

#guides-preview .btn-secondary-custom {
    border: 1px solid rgba(15, 76, 92, 0.2);
    color: #0F4C5C;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

#guides-preview .btn-secondary-custom:hover {
    background-color: #0F4C5C;
    color: #FFFFFF;
    border-color: #0F4C5C;
}

#guides-preview .guide-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

@media (max-width: 991.98px) {

    #guides-preview .large-card,
    #guides-preview .small-card {
        min-height: 400px;
    }

    #guides-preview .section-title {
        font-size: 1.75rem;
    }
}

/* ===== footer ===== */
.myzkelo-footer {
    background-color: #F8FAFB;
    font-family: 'Inter', sans-serif;
    color: #1A202C;
    overflow: hidden;
}

.myzkelo-footer .footer-brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.myzkelo-footer .footer-brand-logo:hover {
    transform: scale(1.05);
}

.myzkelo-footer .nav-link-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A202C;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
}

.myzkelo-footer .nav-link-item:hover {
    color: #0F4C5C;
}

.myzkelo-footer .email-cta {
    color: #0F4C5C;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.myzkelo-footer .email-cta:hover {
    color: #F4A261;
}

.myzkelo-footer .footer-bottom-divider {
    height: 1px;
    background-color: rgba(15, 76, 92, 0.1);
    width: 100%;
}

.myzkelo-footer .legal-link-item {
    font-size: 0.8125rem;
    color: #4A5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.myzkelo-footer .legal-link-item:hover {
    color: #0F4C5C;
    text-decoration: underline;
}

.myzkelo-footer .copyright-text {
    font-size: 0.8125rem;
    color: #4A5568;
    opacity: 0.8;
}

@media (max-width: 767.98px) {
    .myzkelo-footer .nav-link-item {
        font-size: 0.75rem;
    }

    .myzkelo-footer .legal-link-item {
        font-size: 0.75rem;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-wrapper .policy-container { padding: 120px 20px; background-color: #FCFDFF; font-family: 'Inter', sans-serif; color: #1A202C; line-height: 1.7; display: flex; justify-content: center; } .policy-content-wrapper .policy-inner-content { max-width: 900px; width: 100%; } .policy-content-wrapper .policy-intro-section { margin-bottom: 60px; border-bottom: 1px solid rgba(15, 76, 92, 0.1); padding-bottom: 40px; } .policy-content-wrapper .policy-date-label { font-size: 0.875rem; color: #4A5568; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-weight: 500; } .policy-content-wrapper h2 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 2.25rem; color: #0F4C5C; margin-bottom: 24px; letter-spacing: -0.02em; line-height: 1.2; } .policy-content-wrapper h3 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.5rem; color: #0F4C5C; margin-top: 48px; margin-bottom: 20px; letter-spacing: -0.01em; } .policy-content-wrapper p { margin-bottom: 20px; font-size: 1.125rem; } .policy-content-wrapper ul { margin-bottom: 30px; padding-left: 0; list-style: none; } .policy-content-wrapper li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 1.125rem; } .policy-content-wrapper li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; background-color: #F4A261; border-radius: 50%; } .policy-content-wrapper strong { font-weight: 600; color: #0F4C5C; } @media (max-width: 767px) { .policy-content-wrapper .policy-container { padding: 60px 15px; } .policy-content-wrapper h2 { font-size: 1.5rem; } .policy-content-wrapper h3 { font-size: 1.25rem; } .policy-content-wrapper p, .policy-content-wrapper li { font-size: 1rem; } }

/* ===== PAGE: terms ===== */
.policy-content-wrapper { padding: 40px 20px; max-width: 900px; margin: 0 auto; background-color: #FCFDFF; color: #1A202C; font-family: 'Inter', sans-serif; line-height: 1.7; } .policy-content-wrapper .policy-header { border-bottom: 1px solid rgba(15, 76, 92, 0.1); padding-bottom: 30px; } .policy-content-wrapper .policy-label { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: #F4A261; letter-spacing: 0.1em; display: block; margin-bottom: 12px; } .policy-content-wrapper .policy-main-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700; color: #0F4C5C; margin-bottom: 16px; line-height: 1.2; } .policy-content-wrapper .policy-lead { font-size: 1.125rem; color: #4A5568; max-width: 700px; } .policy-content-wrapper .policy-section { margin-bottom: 40px; } .policy-content-wrapper h2 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 600; color: #0F4C5C; margin-bottom: 15px; line-height: 1.3; } .policy-content-wrapper p { margin-bottom: 20px; color: #4A5568; } .policy-content-wrapper ul { padding-left: 20px; margin-bottom: 20px; list-style-type: square; color: #4A5568; } .policy-content-wrapper li { margin-bottom: 10px; } @media (max-width: 768px) { .policy-content-wrapper { padding: 30px 15px; } .policy-content-wrapper .policy-main-title { font-size: 18px; } .policy-content-wrapper h2 { font-size: 16px; } .policy-content-wrapper h3 { font-size: 14px; } .policy-content-wrapper .policy-lead { font-size: 1rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-wrapper {
  padding: 100px 0;
  background-color: #FCFDFF;
  min-height: 60vh;
}

.policy-content-wrapper .disclaimer-body-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 76, 92, 0.05);
  border: 1px solid rgba(15, 76, 92, 0.1);
}

.policy-content-wrapper h2 {
  font-family: 'Outfit', sans-serif;
  color: #0F4C5C;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid #F4A261;
  padding-left: 1rem;
}

.policy-content-wrapper p {
  font-family: 'Inter', sans-serif;
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.policy-content-wrapper ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
  list-style: none;
}

.policy-content-wrapper li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #4A5568;
  font-size: 1.05rem;
}

.policy-content-wrapper li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #F4A261;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .policy-content-wrapper {
    padding: 60px 15px;
  }
  
  .policy-content-wrapper .disclaimer-body-content {
    padding: 25px;
  }
  
  .policy-content-wrapper h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }
  
  .policy-content-wrapper p {
    font-size: 1rem;
  }
}

/* ===== PAGE: cookies ===== */
.policy-content-wrapper .policy-body-content { padding: 60px 15px; max-width: 850px; margin: 0 auto; line-height: 1.7; color: #1A202C; } .policy-content-wrapper .policy-section { margin-bottom: 40px; } .policy-content-wrapper h2 { font-family: 'Outfit', sans-serif; font-weight: 600; color: #0F4C5C; font-size: 24px; margin-bottom: 1.5rem; letter-spacing: -0.02em; } .policy-content-wrapper h3 { font-family: 'Outfit', sans-serif; font-weight: 600; color: #0F4C5C; font-size: 18px; margin-bottom: 1rem; } .policy-content-wrapper p { margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; font-weight: 400; color: #4A5568; } .policy-content-wrapper ul { margin-bottom: 1.5rem; padding-left: 1.5rem; } .policy-content-wrapper li { margin-bottom: 0.5rem; color: #4A5568; position: relative; list-style: none; } .policy-content-wrapper li::before { content: ''; position: absolute; left: -1.5rem; top: 0.6rem; width: 6px; height: 6px; background-color: #F4A261; border-radius: 50%; } .policy-content-wrapper .policy-card-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; } .policy-content-wrapper .policy-card { background: #FFFFFF; border: 1px solid rgba(15, 76, 92, 0.1); padding: 24px; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .policy-content-wrapper .policy-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(15, 76, 92, 0.05); } .policy-content-wrapper .policy-action-box { background: #E9F5F8; padding: 30px; border-radius: 20px; border-left: 4px solid #0F4C5C; margin-top: 40px; } @media (min-width: 768px) { .policy-content-wrapper .policy-card-grid { flex-direction: row; flex-wrap: wrap; } .policy-content-wrapper .policy-card { flex: 1 1 calc(50% - 20px); } } @media (max-width: 767px) { .policy-content-wrapper h2 { font-size: 16px; } .policy-content-wrapper h3 { font-size: 14px; } .policy-content-wrapper .policy-body-content { padding: 40px 15px; } }

/* ===== PAGE: routes ===== */
.routes-list-section {
  background-color: #FCFDFF;
  overflow: hidden;
}
.routes-list-section .text-accent {
  color: #F4A261 !important;
}
.routes-list-section .text-primary {
  color: #0F4C5C !important;
}
.routes-list-section .bg-accent {
  background-color: #F4A261 !important;
}
.routes-list-section .route-card {
  background: #FFFFFF;
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.routes-list-section .route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08) !important;
}
.routes-list-section .route-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.routes-list-section .route-card:hover .route-img {
  transform: scale(1.05);
}
.routes-list-section .badge {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 20px;
}
.routes-list-section .search-wrapper {
  background: #FFFFFF;
  transition: box-shadow 0.3s ease;
}
.routes-list-section .search-wrapper:focus-within {
  box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1) !important;
}
@media (max-width: 768px) {
  .routes-list-section .route-img {
    height: 240px;
  }
  .routes-list-section .display-4 {
    font-size: 2.25rem;
  }
}

/* ===== PAGE: services ===== */
.myzkelo-services .js-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08) !important;
}

.myzkelo-services .js-service-card:hover .js-service-img {
  transform: scale(1.05);
}

.myzkelo-services .js-book-btn:hover {
  background-color: #2A9D8F !important;
  transition: background-color 0.3s ease;
}

.myzkelo-services .form-control:focus {
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.05);
  border: 1px solid rgba(15, 76, 92, 0.1) !important;
}

.myzkelo-services .btn-close {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.myzkelo-services .btn-close:hover {
  opacity: 1;
}

.myzkelo-services .tracking-wider {
  letter-spacing: 0.15em;
}

@media (max-width: 768px) {
  .myzkelo-services .display-4 {
    font-size: 1.75rem;
  }
  .myzkelo-services .lead {
    font-size: 1rem;
  }
  .myzkelo-services .card-img-top {
    height: 200px !important;
  }
}

/* ===== PAGE: guides ===== */
.guides-section {
  background-color: #FCFDFF;
  min-height: 600px;
}

.guides-section .shadow-soft {
  box-shadow: 0 10px 30px rgba(15, 76, 92, 0.05);
}

.guides-section .guide-card-inner {
  border-radius: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  background: #FFFFFF;
}

.guides-section .guide-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08);
}

.guides-section .card-img-wrapper {
  height: 240px;
  position: relative;
  z-index: 1;
}

.guides-section .js-zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.guides-section .guide-card-inner:hover .js-zoom-img {
  transform: scale(1.05);
}

.guides-section .input-group {
  border: 1px solid rgba(15, 76, 92, 0.1);
}

.guides-section .js-search-input:focus {
  box-shadow: none;
}

.guides-section .card-title a {
  color: #0F4C5C;
  transition: color 0.3s ease;
}

.guides-section .card-title a:hover {
  color: #2A9D8F;
}

.guides-section .text-primary {
  color: #0F4C5C !important;
}

@media (max-width: 767.98px) {
  .guides-section .card-img-wrapper {
    height: 200px;
  }
  .guides-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

/* ===== PAGE: contact ===== */
.contact-section {
  background-color: #FCFDFF;
  font-family: 'Inter', sans-serif;
}
.contact-section .contact-label {
  font-family: 'Outfit', sans-serif;
  color: #F4A261;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
}
.contact-section .contact-title {
  font-family: 'Outfit', sans-serif;
  color: #0F4C5C;
  font-weight: 700;
  line-height: 1.2;
}
.contact-section .contact-description {
  color: #4A5568;
  font-size: 1.125rem;
  max-width: 500px;
}
.contact-section .contact-image-container .contact-overlay-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  bottom: 30px;
  right: 30px;
  left: 30px;
  border: 1px solid rgba(15, 76, 92, 0.1);
  color: #0F4C5C;
}
.contact-section .contact-form-card {
  background: #FFFFFF;
  box-shadow: 0 20px 40px rgba(15, 76, 92, 0.05);
  border-color: #E2E8F0 !important;
}
.contact-section .form-label {
  font-weight: 500;
  color: #1A202C;
  font-size: 0.95rem;
}
.contact-section .form-control, .contact-section .form-select {
  border: 1px solid #E2E8F0;
  background-color: #F8FAFB;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.contact-section .form-control:focus, .contact-section .form-select:focus {
  background-color: #FFFFFF;
  border-color: #0F4C5C;
  box-shadow: 0 0 0 4px rgba(15, 76, 92, 0.05);
}
.contact-section .btn-primary {
  background-color: #0F4C5C !important;
  border: none;
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}
.contact-section .btn-primary:hover {
  background-color: #186a7d !important;
  transform: translateY(-2px);
}
.contact-section .form-control::placeholder {
  color: #A0AEC0 !important;
  opacity: 1;
}
.contact-section .invalid-feedback {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
@media (max-width: 767.98px) {
  .contact-section .contact-title {
    font-size: 1.75rem;
  }
  .contact-section .contact-image-container img {
    height: 300px !important;
  }
}

.main-comment-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(15, 76, 92, 0.03);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-comment-card:hover {
    box-shadow: 0 20px 40px rgba(15, 76, 92, 0.08);
}

.comment-avatar {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #E9F5F8;
}

.comment-author {
    font-family: 'Outfit', sans-serif;
    color: #1A202C;
    font-weight: 600;
    font-size: 1.1rem;
}

.comment-timestamp {
    font-size: 0.85rem;
    color: #4A5568;
    letter-spacing: 0.02em;
}

.comment-text {
    font-family: 'Inter', sans-serif;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 0;
}

.comment-rating {
    display: flex;
    align-items: center;
    background: rgba(244, 162, 97, 0.1);
    padding: 4px 10px;
    border-radius: 30px;
}

.rating-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F4C5C;
}

.btn-comment-action {
    background: none;
    border: none;
    padding: 0;
    color: #0F4C5C;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.btn-comment-action:hover {
    opacity: 1;
    color: #2A9D8F;
}

.reply-comment-card {
    background: #F8FAFB;
    border-radius: 20px;
    border-left: 4px solid #F4A261;
    position: relative;
}

.reply-comment-wrapper::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(15, 76, 92, 0.05);
}

.comment-avatar-small {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}

.reply-author {
    font-family: 'Outfit', sans-serif;
    color: #1A202C;
    font-weight: 600;
    font-size: 1rem;
}

.staff-badge {
    background: #0F4C5C;
    color: #FFFFFF;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

.border-start-accent {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}


/* ===== PAGE TEMPLATE: routes ===== */
.hero-block {
    position: relative;
    background-color: #0F4C5C;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-block__bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-block__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-block__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.8) 0%, rgba(15, 76, 92, 0.4) 100%);
}

.hero-block__label {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #F4A261;
    font-size: 0.875rem;
}

.hero-block__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-block__description {
    font-family: 'Inter', sans-serif;
    color: #E2E8F0;
    font-size: 1.125rem;
    max-width: 600px;
    line-height: 1.6;
}

.route-detail-page {
    background-color: #FCFDFF;
}

.route-detail-page__content-card,
.route-detail-page__info-card,
.route-detail-page__share-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(15, 76, 92, 0.1);
    box-shadow: 0 10px 30px rgba(15, 76, 92, 0.03);
}

.route-detail-page .h3,
.route-detail-page .h5 {
    font-family: 'Outfit', sans-serif;
    color: #0F4C5C;
    font-weight: 600;
}

.route-detail-page p {
    color: #4A5568;
    line-height: 1.8;
}

.route-detail-page__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4A5568;
}

.route-detail-page__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background-color: #F4A261;
    border-radius: 50%;
}

.route-detail-page .btn-outline-primary {
    border-color: #0F4C5C;
    color: #0F4C5C;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
}

.route-detail-page .btn-outline-primary:hover,
.route-detail-page .btn-outline-primary.active {
    background-color: #0F4C5C;
    color: #FFFFFF;
}

.route-detail-page .hidden {
    display: none;
}

.route-detail-page__slider {
    height: 400px;
}

.h-400 {
    height: 400px;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F4C5C;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-control:hover {
    background: #FFFFFF;
    color: #F4A261;
}

.slider-control--prev {
    left: 20px;
}

.slider-control--next {
    right: 20px;
}

.share-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #FFFFFF;
    transition: opacity 0.3s ease;
}

.share-btn:hover {
    opacity: 0.8;
    color: #FFFFFF;
}

.share-btn--fb {
    background-color: #1877F2;
}

.share-btn--tw {
    background-color: #1DA1F2;
}

.share-btn--wa {
    background-color: #25D366;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.myzkelo-header-block .navbar {
    min-height: 80px;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid rgba(15, 76, 92, 0.1);
}

.myzkelo-header-block .brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0F4C5C;
    letter-spacing: -0.02em;
}

.myzkelo-header-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #1A202C !important;
    transition: all 0.3s ease;
}

.myzkelo-header-block .btn-primary {
    background-color: #0F4C5C !important;
    border: none !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.15);
}

.myzkelo-footer .nav-link-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1A202C;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.myzkelo-footer .email-cta {
    color: #0F4C5C;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

@media (max-width: 991.98px) {
    .hero-block {
        min-height: 50vh;
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
    }

    .route-detail-page__slider {
        height: 300px;
    }

    .h-400 {
        height: 300px;
    }

    .myzkelo-header-block .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1rem 0;
    }
}

/* ===== PAGE TEMPLATE: services ===== */
.myzkelo-header-block .navbar {
    min-height: 80px;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid rgba(15, 76, 92, 0.1);
}

.myzkelo-header-block .header-logo {
    max-width: 45px;
    height: auto;
}

.myzkelo-header-block .brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0F4C5C;
}

.myzkelo-header-block .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #1A202C !important;
}

.myzkelo-header-block .btn-primary {
    background-color: #0F4C5C !important;
    color: #FFFFFF !important;
}

.hero-block {
    min-height: 50vh;
    background-color: #0F4C5C;
}

.hero-block__bg-container {
    position: absolute;
    inset: 0;
}

.hero-block__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-block__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 76, 92, 0.8) 0%, rgba(15, 76, 92, 0.4) 100%);
}

.hero-block__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-block__description {
    color: #E2E8F0;
    font-size: 1.125rem;
}

.hero-block__label {
    color: #F4A261;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.1em;
}

.service-detail-section .service-gallery {
    background: #000;
    position: relative;
}

.service-detail-section .service-gallery__track {
    transition: transform 0.5s ease-in-out;
}

.service-detail-section .gallery-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.service-detail-section .gallery-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-detail-section .gallery-btn:hover {
    background: #FFFFFF;
    transform: scale(1.1);
}

.service-detail-section .gallery-btn svg {
    width: 24px;
    height: 24px;
    stroke: #0F4C5C;
}

.service-detail-section .service-section-title {
    font-family: 'Outfit', sans-serif;
    color: #0F4C5C;
    font-weight: 600;
}

.service-detail-section .content-body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #4A5568;
}

.service-detail-section .feature-card {
    background-color: #F8FAFB;
    border: 1px solid rgba(15, 76, 92, 0.05);
    transition: transform 0.3s ease;
}

.service-detail-section .feature-card:hover {
    transform: translateY(-5px);
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(15, 76, 92, 0.05);
}

.service-detail-section .feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #F4A261;
}

.service-detail-section .booking-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0 !important;
    position: sticky;
    top: 100px;
}

.service-detail-section .form-control {
    border: 1px solid #E2E8F0;
    padding: 0.75rem 1.25rem;
}

.service-detail-section .form-control:focus {
    border-color: #0F4C5C;
    box-shadow: 0 0 0 0.25rem rgba(15, 76, 92, 0.1);
}

.service-detail-section .btn-primary {
    background-color: #0F4C5C;
    border: none;
}

.service-detail-section .btn-primary:hover {
    background-color: #2A9D8F;
}

.myzkelo-footer {
    background-color: #F8FAFB;
    color: #1A202C;
}

.myzkelo-footer .footer-brand-logo {
    max-width: 45px;
}

.myzkelo-footer .nav-link-item {
    color: #1A202C;
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.myzkelo-footer .email-cta {
    color: #0F4C5C;
    text-decoration: none;
}

@media (max-width: 991px) {
    .service-detail-section .booking-card {
        position: static;
    }

    .service-detail-section .service-gallery img {
        height: 350px !important;
    }
}

/* ===== PAGE TEMPLATE: guides ===== */
.guide-detail-template {
    background-color: #FCFDFF;
}

.guide-detail-template .hero-block {
    min-height: 60vh !important;
    display: flex;
    align-items: center;
    background-color: #0F4C5C;
}

.guide-detail-template .hero-block__overlay {
    background: linear-gradient(180deg, rgba(15, 76, 92, 0.4) 0%, rgba(15, 76, 92, 0.9) 100%);
}

.guide-detail-template .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.guide-detail-template .article-container {
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.guide-detail-template .article-main {
    border: 1px solid rgba(15, 76, 92, 0.05);
}

.guide-detail-template .content-body-text h2,
.guide-detail-template .content-body-text h3 {
    font-family: 'Outfit', sans-serif;
    color: #0F4C5C;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.guide-detail-template .content-body-text p {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.guide-detail-template .content-body-text ul,
.guide-detail-template .content-body-text ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.guide-detail-template .content-body-text li {
    margin-bottom: 0.75rem;
    color: #4A5568;
}

.guide-detail-template .sidebar-sticky {
    position: sticky;
    top: 100px;
}

.guide-detail-template .sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0F4C5C;
    font-size: 1.25rem;
}

.guide-detail-template .related-item__img-box {
    width: 80px;
    height: 60px;
    overflow: hidden;
}

.guide-detail-template .related-item__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.guide-detail-template .related-item:hover img {
    transform: scale(1.1);
}

.guide-detail-template .cta-card {
    background: linear-gradient(135deg, #0F4C5C 0%, #2A9D8F 100%);
    min-height: 250px;
}

.guide-detail-template .btn-accent {
    background-color: #F4A261 !important;
    color: #FFFFFF !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guide-detail-template .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 162, 97, 0.3);
}

.guide-detail-template .btn-outline-primary {
    border-color: #0F4C5C;
    color: #0F4C5C;
}

.guide-detail-template .btn-outline-primary:hover {
    background-color: #0F4C5C;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .guide-detail-template .article-container {
        margin-top: 0;
    }

    .guide-detail-template .hero-block {
        min-height: auto !important;
    }
}

/* Whitegen fixes */
.myzkelo-header-block .navbar-brand .brand-text.d-none,
.myzkelo-header-block .navbar-brand .brand-text {
    display: inline !important;
}

.myzkelo-footer a.d-inline-block {
    display: inline-flex !important;
    align-items: center;
    gap: 0.75rem;
    color: #0F4C5C;
    text-decoration: none;
}

.myzkelo-footer a.d-inline-block::after {
    content: "Myzkelo";
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F4C5C;
    line-height: 1;
}

.service-detail-section .sidebar-sticky {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.service-detail-section .booking-card {
    position: static;
    top: auto;
}

.policy-page {
    background-color: #FCFDFF;
}

.policy-page .hero-block__description {
    color: #FFFFFF;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.policy-page .policy-container,
.policy-page section.policy-content-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 80px 20px;
    background-color: #FCFDFF;
}

.policy-page .policy-inner-content,
.policy-page div.policy-content-wrapper,
.policy-page .disclaimer-body-content,
.policy-page .policy-body-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid rgba(15, 76, 92, 0.1);
    border-radius: 24px;
    background-color: #FFFFFF;
    box-shadow: 0 20px 40px rgba(15, 76, 92, 0.07);
    color: #1A202C;
    line-height: 1.7;
}

.policy-page div.policy-content-wrapper {
    margin-top: 80px;
    margin-bottom: 80px;
}

.policy-page .policy-body-content {
    margin-top: 80px;
    margin-bottom: 80px;
}

.policy-page .policy-header,
.policy-page .policy-intro-section {
    margin-bottom: 42px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(15, 76, 92, 0.1);
}

.policy-page .policy-label,
.policy-page .policy-date-label {
    color: #F4A261;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.policy-page .policy-main-title {
    color: #0F4C5C;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.policy-page .policy-lead {
    max-width: 720px;
    color: #4A5568;
    font-size: 1.125rem;
}

.policy-page .policy-inner-content h2,
.policy-page div.policy-content-wrapper h2,
.policy-page .disclaimer-body-content h2,
.policy-page .policy-body-content h2 {
    margin-top: 2.25rem;
    margin-bottom: 1.25rem;
    padding-left: 1rem;
    border-left: 4px solid #F4A261;
    color: #0F4C5C;
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
}

.policy-page .policy-inner-content h3,
.policy-page div.policy-content-wrapper h3,
.policy-page .disclaimer-body-content h3,
.policy-page .policy-body-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0F4C5C;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.policy-page .policy-inner-content p,
.policy-page div.policy-content-wrapper p,
.policy-page .disclaimer-body-content p,
.policy-page .policy-body-content p {
    margin-bottom: 1.25rem;
    color: #4A5568;
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    line-height: 1.75;
}

.policy-page .policy-inner-content ul,
.policy-page div.policy-content-wrapper ul,
.policy-page .disclaimer-body-content ul,
.policy-page .policy-body-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.policy-page .policy-inner-content li,
.policy-page div.policy-content-wrapper li,
.policy-page .disclaimer-body-content li,
.policy-page .policy-body-content li {
    position: relative;
    margin-bottom: 0.75rem;
    padding-left: 1.6rem;
    color: #4A5568;
    font-size: 1.05rem;
    line-height: 1.65;
}

.policy-page .policy-inner-content li::before,
.policy-page div.policy-content-wrapper li::before,
.policy-page .disclaimer-body-content li::before,
.policy-page .policy-body-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F4A261;
}

.policy-page .policy-card {
    border-radius: 16px;
}

@media (max-width: 991.98px) {
    .service-detail-section .sidebar-sticky {
        position: static;
        top: auto;
    }
}

@media (max-width: 767.98px) {
    .myzkelo-header-block .brand-text {
        font-size: 1.15rem;
    }

    .policy-page .policy-container,
    .policy-page section.policy-content-wrapper {
        padding: 42px 15px;
    }

    .policy-page .policy-inner-content,
    .policy-page div.policy-content-wrapper,
    .policy-page .disclaimer-body-content,
    .policy-page .policy-body-content {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .policy-page div.policy-content-wrapper {
        margin-top: 42px;
        margin-bottom: 42px;
    }

    .policy-page .policy-body-content {
        margin-top: 42px;
        margin-bottom: 42px;
    }

    .policy-page .policy-main-title {
        font-size: 1.6rem;
    }

    .policy-page .policy-inner-content h2,
    .policy-page div.policy-content-wrapper h2,
    .policy-page .disclaimer-body-content h2,
    .policy-page .policy-body-content h2 {
        font-size: 1.2rem;
    }

    .policy-page .policy-inner-content h3,
    .policy-page div.policy-content-wrapper h3,
    .policy-page .disclaimer-body-content h3,
    .policy-page .policy-body-content h3 {
        font-size: 1.05rem;
    }

    .policy-page .policy-inner-content p,
    .policy-page div.policy-content-wrapper p,
    .policy-page .disclaimer-body-content p,
    .policy-page .policy-body-content p,
    .policy-page .policy-inner-content li,
    .policy-page div.policy-content-wrapper li,
    .policy-page .disclaimer-body-content li,
    .policy-page .policy-body-content li {
        font-size: 0.95rem;
    }
}

.policy-page div.policy-content-wrapper > .policy-body .policy-section {
    padding: 0 !important;
    margin-bottom: 1.35rem;
    min-height: 0 !important;
    height: auto !important;
}

.policy-page div.policy-content-wrapper > .policy-body .policy-section:last-child {
    margin-bottom: 0;
}

.policy-page div.policy-content-wrapper > .policy-body .policy-section h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.policy-page div.policy-content-wrapper > .policy-body .policy-section p {
    margin-bottom: 0.75rem;
}

.policy-page div.policy-content-wrapper > .policy-body .policy-section ul {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}
