.container-menu {
    max-width: 95vw;
}

/* ===== HLAVNÝ ŠTÝL - POUŽÍVANÉ TRIEDY ===== */

/* ===== VARIABLES & BASE ===== */
.section-1 { background-color: #e5e5e5; }
.section-2 { background-color: #ffffff; }
.services-card-1 { background-color: #efefef; }
.services-card-2 { background-color: #ffffff; }

/* ===== MENU & NAVIGÁCIA ===== */
.nav-menu > li > a {
    padding: 5px 0;
    font-size: 15px;
}

/* ===== DROPDOWN MENU - DESKTOP ===== */
@media (min-width: 769px) {
    .dropdown-menu {
        padding: 10px 0;
        min-width: 280px;
    }
    .dropdown-menu li {
        padding: 5px 15px;
        margin: 2px 0;
    }
    .dropdown-menu a {
        font-size: 15px;
        padding: 5px 0;
        display: block;
    }
    .dropdown-menu li:not(:last-child) {
        border-bottom: 1px solid #f0f0f0;
    }
}

/* ===== RESPONZIVITA - MOBIL (do 768px) ===== */
@media (max-width: 768px) {
    .header-content { height: 70px !important; }
    .logo { width: 175px !important; height: 70px !important; }
    .logo img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
    .container { max-width: 100% !important; padding: 0 15px; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px !important;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 15px;
    }
    .nav-menu.active { display: flex !important; }
    .mobile-menu-btn { display: block !important; }
    .header-contact { display: none; }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        min-width: auto;
        display: none;
    }
    .dropdown.active .dropdown-menu { display: block; padding: 10px 0; margin: 5px 0 10px 0; }
    .dropdown.active .dropdown-menu li { padding: 12px 25px; margin: 3px 0; }
    .dropdown.active .dropdown-menu a { font-size: 16px; display: block; }
    .dropdown.active .dropdown-menu li:not(:last-child) { border-bottom: 1px solid #e0e0e0; }
    .dropdown > a { display: flex; justify-content: space-between; align-items: center; }
    
    .hero-mapy { min-height: 300px; margin-top: 50px !important; padding: 40px 0; }
    .hero-mapy h1 { font-size: 2rem; }
    .hero-mapy .hero-subtitle { font-size: 1.1rem; width: 100%; margin-bottom: 30px; opacity: 0.9; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .hero-buttons .btn { width: 100%; }
    
    .services-grid, .services-grid-2, .services-grid-3, .services-grid-4,
    .process-steps { grid-template-columns: 1fr; gap: 20px; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

/* ===== LANDSCAPE REŽIM NA MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .header-content { height: 50px !important; }
    .logo { width: 125px !important; height: 50px !important; }
    .logo img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
    .nav-menu { top: 50px !important; max-height: calc(100vh - 50px); overflow-y: auto; gap: 15px; }
    .header-contact { display: none !important; }
    .hero-mapy { margin-top: 50px !important; min-height: auto !important; padding: 20px 0 !important; }
    .hero-mapy h1 { font-size: 1.4rem !important; }
}

/* ===== MALÉ MOBILY (480px a menej) ===== */
@media (max-width: 480px) {
    .header-content { height: 60px !important; }
    .logo { width: 150px !important; height: 60px !important; }
    .logo img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
    .nav-menu { top: 60px !important; gap: 15px; }
    .hero-mapy { min-height: 350px; margin-top: 60px !important; }
    .hero-mapy h1 { font-size: 1.6rem; }
    .hero-mapy .hero-subtitle { font-size: 1rem; }
    .showcase-grid, .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .card { padding: 15px; }
}

/* ===== VERY MALÉ VÝŠKY V LANDSCAPE ===== */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 400px) {
    .header-content { height: 40px !important; }
    .logo { width: 100px !important; height: 40px !important; }
    .logo img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
    .nav-menu { top: 40px !important; }
    .hero-mapy { margin-top: 40px !important; padding: 10px 0 !important; }
    .hero-mapy h1 { font-size: 1.2rem !important; margin-bottom: 5px !important; }
    .hero-buttons { flex-direction: row !important; }
    .hero-buttons .btn { padding: 5px 10px !important; font-size: 12px !important; }
}

@media (max-width: 768px) and (orientation: portrait) {
    .hero-image { display: none; }
}

/* ===== GRID SYSTÉMY ===== */
.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 992px) { .services-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .services-grid-3 { grid-template-columns: 1fr; } }

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 1200px) { .services-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 992px) { .services-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .services-grid-4 { grid-template-columns: 1fr; } }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.services-grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.services-grid-12 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}
@media (max-width: 768px) { .services-grid-12 { grid-template-columns: 1fr; } }

/* ===== KARTY (CARDS) ===== */
.services-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-top: 4px solid #0056b3;
    border-radius: 8px;
}
.services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.services-card h3 {
    color: #0056b3;
    font-size: 1.6rem;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
    font-family: var(--font-primary);
}
.services-card p {
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}
.services-card p em { font-style: italic; color: #777; }

/* ===== TLAČIDLÁ ===== */
.text-center1 {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}
.text-center1:hover {
    transform: translateY(-8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.text-center2 {
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

/* ===== SERVICE ICON ===== */
.service-icon {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== FAQ ACCORDION (zjednotené štýly) ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.map-showcase-item {
    width: 100%;
    margin: 0;
    text-align: center;
}

.map-showcase-item button {
    width: 100%;
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.map-showcase-item button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-showcase-item button i {
    transition: transform 0.3s ease;
}

.map-showcase-text {
    margin-top: 10px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #005289;
    border-radius: 8px;
    text-align: left;
    line-height: 1.6;
    color: #333;
}
.map-showcase-text.hidden { display: none; }
.map-showcase-text:not(.hidden) {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ===== FOOTER ===== */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 40px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.footer h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    font-weight: 600;
}
.footer-about p { line-height: 1.6; color: #bdc3c7; }
.footer-links ul, .footer-services ul, .footer-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-services li, .footer-contact li { margin-bottom: 12px; }
.footer-links a, .footer-services a, .footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover, .footer-services a:hover, .footer-contact a:hover { color: #3498db; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdc3c7;
}
.footer-contact i { width: 20px; color: #3498db; }
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p { color: #95a5a6; font-size: 0.9rem; }
.footer-social { display: flex; gap: 15px; }
.footer-social a {
    color: #95a5a6;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.footer-social a:hover { color: #3498db; }

@media (max-width: 992px) { .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (max-width: 576px) {
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-social { justify-content: center; }
}

/* ===== LOGÁ PARTNERI ===== */
.logo_partneri {
    height: 8vw;
    width: auto;
    opacity: 0.7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.logo_partneri:hover {
    opacity: 1;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}
.partner-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
}

/* ===== CLIENTS GRID ===== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}
@media (max-width: 992px) { .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .clients-grid > div { text-align: center; width: 100%; }
    .logo_partneri {
        height: 50px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    .partner-label { font-size: 0.7rem; margin-top: 5px; text-align: center; }
}
@media (max-width: 576px) { .clients-grid { gap: 25px 15px; } }
@media (max-width: 480px) { .clients-grid { gap: 20px 10px; } }
@media (max-width: 768px) and (orientation: landscape) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 90%; }
    .logo_partneri { height: 40px; }
    .partner-label { font-size: 0.6rem; margin-top: 4px; }
}

/* ===== BENEFITS SHOWCASE (zachované z pôvodného) ===== */
.benefits-showcase { text-align: center; }
.benefit-header { margin-bottom: 20px; }
.benefit-header i { font-size: 2.5rem; color: #ffd700; margin-bottom: 10px; }
.benefit-header h3 { color: #0056b3; font-size: 1.3rem; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.benefit-item {
    background: linear-gradient(135deg, #f0f7ff, #e8f0fe);
    padding: 15px;
    border-radius: 12px;
    transition: transform 0.3s;
}
.benefit-item:hover { transform: translateY(-5px); }
.benefit-icon { font-size: 2rem; margin-bottom: 8px; }
.benefit-text strong { display: block; font-size: 1.3rem; color: #0056b3; }
.benefit-text span { font-size: 0.8rem; color: #666; }
.benefit-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.comparison-item { flex: 1; text-align: center; padding: 10px; border-radius: 8px; }
.comparison-item.classic { background: #e0e0e0; color: #666; }
.comparison-item.extended { background: #0056b3; color: white; }
.comparison-arrow { color: #ffd700; font-size: 1.5rem; margin: 0 10px; }
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    text-align: left;
}
.feature-item { font-size: 0.9rem; color: #555; }
.feature-item i { color: #0056b3; margin-right: 8px; }
/* ===== SHARED HEADER NAVIGATION ===== */
.container-menu {
    width: 100%;
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    display: block;
    height: 80px;
    max-width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--dark-color, #2c3e50);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color, #005289);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white, #fff);
    min-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-contact .phone {
    color: var(--secondary-color, #005289);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color, #2c3e50);
}
/* ===== SHARED HEADER MOBILE OVERRIDES ===== */
@media (max-width: 768px) {
    .header-content {
        height: 70px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px !important;
        left: 0;
        width: 100%;
        background-color: var(--white, #fff);
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        box-shadow: var(--shadow, 0 4px 10px rgba(0, 0, 0, 0.12));
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .header-contact {
        display: none !important;
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        width: 100%;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 60px;
    }

    .nav-menu {
        top: 60px !important;
    }
}
/* ===== SHARED COMPONENT ALIASES ===== */
.content-card,
.embed-card,
.info-card {
    background: #fff;
    border-top: 4px solid #0056b3;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.content-card h3,
.embed-card h3,
.info-card h3 {
    color: #0056b3;
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
}

.card-grid-2,
.card-grid-3,
.card-grid-4 {
    display: grid;
    gap: 30px;
}

.card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.responsive-embed,
.embed-frame {
    position: relative;
    width: 100%;
    min-height: 350px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    background: #d9dde3;
}

.responsive-embed iframe,
.embed-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 992px) {
    .card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .card-grid-2,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }

    .responsive-embed,
    .embed-frame {
        min-height: 280px;
        aspect-ratio: 4 / 3;
    }
}
/* ===== HOMEPAGE VIRTUAL TOUR EMBEDS ===== */
.virtual-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.virtual-tour-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.virtual-tour-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 360px;
    overflow: hidden;
    border-radius: 6px;
    background: #d9dde3;
}

{
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.virtual-tour-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 992px) {
    .virtual-tour-grid {
        grid-template-columns: 1fr;
    }

    .virtual-tour-embed {
        min-height: 340px;
    }
}

@media (max-width: 576px) {
    .virtual-tour-grid {
        gap: 22px;
    }

    .virtual-tour-embed {
        min-height: 260px;
        aspect-ratio: 4 / 3;
    }
}
/* ===== VIRTUALNE PREHLIADKY PAGE LAYOUT ===== */
body.page-virtualtour {
    background: #fff;
    color: #555;
}

body.page-virtualtour .container {
    width: 100%;
    max-width: 90vw;
}

body.page-virtualtour h1,
body.page-virtualtour h2,
body.page-virtualtour h3 {
    letter-spacing: 0;
}

body.page-virtualtour .hero {
    margin-top: 80px;
    min-height: 430px;
    padding: 76px 0 68px;
    color: #fff;
    text-align: left;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(193,188,188,0.8)), url('https://skeyemap.com/images/hero-bg.jpg') center/cover no-repeat;
}

body.page-virtualtour .hero-grid {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

body.page-virtualtour .hero-content {
    max-width: 1180px;
    margin: 0;
}

body.page-virtualtour .hero h1 {
    color: #fff;
    font-size: 2.8rem;
    line-height: 1.18;
    margin: 0 0 18px;
}

body.page-virtualtour .hero-subtitle {
    max-width: 980px;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.94);
    font-size: 1.16rem;
    line-height: 1.7;
}

body.page-virtualtour .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
}

body.page-virtualtour .hero-image {
    display: none;
}

body.page-virtualtour .btn,
body.page-virtualtour .btn-small {
    border-radius: 5px;
    font-weight: 700;
}

body.page-virtualtour .btn-primary,
body.page-virtualtour .btn-secondary {
    background: #2f5f9d;
    color: #fff;
    border: 1px solid #2f5f9d;
}

body.page-virtualtour .btn-secondary {
    background: transparent;
    border-color: #fff;
}

body.page-virtualtour .btn-primary:hover,
body.page-virtualtour .btn-secondary:hover {
    background: #244f87;
    border-color: #244f87;
    transform: translateY(-2px);
}

body.page-virtualtour .btn-small {
    color: #2f5f9d;
}

body.page-virtualtour .section-full,
body.page-virtualtour .benefits,
body.page-virtualtour .process,
body.page-virtualtour .services,
body.page-virtualtour .showcase,
body.page-virtualtour .target-groups,
body.page-virtualtour .faq,
body.page-virtualtour .cta {
    padding: 70px 0;
}

body.page-virtualtour #virtualna-prehliadka,
body.page-virtualtour .process,
body.page-virtualtour .target-groups {
    background: #e5e5e5;
}

body.page-virtualtour .benefits,
body.page-virtualtour .services,
body.page-virtualtour .showcase,
body.page-virtualtour .faq {
    background: #fff;
}

body.page-virtualtour .section-title,
body.page-virtualtour .page-rozsirene,
body.page-virtualtour section > .container > h2,
body.page-virtualtour .process h2 {
    color: #2b55b9;
    text-align: center;
    font-size: 2.15rem;
    line-height: 1.2;
    margin: 0 0 18px;
    padding-bottom: 0;
}

body.page-virtualtour .section-title::after {
    display: none;
}

body.page-virtualtour .section-perex,
body.page-virtualtour .section-subtitle {
    max-width: 900px;
    margin: 0 auto 34px;
    color: #5f6470;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.7;
}

body.page-virtualtour .card-fullwidth {
    width: 100%;
}

body.page-virtualtour .card,
body.page-virtualtour .benefit-card,
body.page-virtualtour .service-card,
body.page-virtualtour .step,
body.page-virtualtour .showcase-item,
body.page-virtualtour .faq-item {
    background: #fff;
    border-top: 4px solid #2f5fbd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

body.page-virtualtour .card:hover,
body.page-virtualtour .benefit-card:hover,
body.page-virtualtour .service-card:hover,
body.page-virtualtour .step:hover,
body.page-virtualtour .showcase-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

body.page-virtualtour .card,
body.page-virtualtour .benefit-card,
body.page-virtualtour .service-card,
body.page-virtualtour .step,
body.page-virtualtour .showcase-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.page-virtualtour .card h3,
body.page-virtualtour .benefit-card h3,
body.page-virtualtour .service-card h3,
body.page-virtualtour .step h3 {
    color: #2b55b9;
    text-align: center;
    font-size: 1.35rem;
    margin: 0 0 14px;
}

body.page-virtualtour .card p,
body.page-virtualtour .benefit-card p,
body.page-virtualtour .service-card p,
body.page-virtualtour .step p {
    color: #5f6470;
    text-align: center;
}

body.page-virtualtour .card-with-iframe {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.65fr);
    gap: 30px;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

body.page-virtualtour .card-content,
body.page-virtualtour .card-iframe {
    min-width: 0;
}

body.page-virtualtour .card-content {
    padding: 30px;
}

body.page-virtualtour .card-iframe,
body.page-virtualtour .map-placeholder {
    min-height: 430px;
    overflow: hidden;
}

body.page-virtualtour .map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(37, 72, 116, 0.34), rgba(37, 72, 116, 0.34)), url('https://skeyemap.com/images/Carlton.webp') center/cover no-repeat;
}

body.page-virtualtour .placeholder-content {
    color: #fff;
    text-align: center;
}

body.page-virtualtour .card-container-grid,
body.page-virtualtour .benefits-grid,
body.page-virtualtour .services-grid,
body.page-virtualtour .process-steps,
body.page-virtualtour .showcase-grid {
    display: grid;
    gap: 30px;
}

body.page-virtualtour .card-container-grid,
body.page-virtualtour .services-grid,
body.page-virtualtour .process-steps,
body.page-virtualtour .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-virtualtour .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.page-virtualtour .benefit-card,
body.page-virtualtour .service-card,
body.page-virtualtour .step {
    padding: 26px;
    min-height: auto;
}

body.page-virtualtour .benefit-icon,
body.page-virtualtour .service-icon {
    color: #2f5fbd;
    font-size: 2.1rem;
    margin-bottom: 14px;
    text-align: center;
}

body.page-virtualtour .step-number {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #2f5fbd;
    color: #fff;
    font-weight: 800;
}

body.page-virtualtour .showcase-item {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    padding: 0;
}

body.page-virtualtour .showcase-item picture {
    display: block;
    height: 270px;
}

body.page-virtualtour .showcase-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.page-virtualtour .showcase-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

body.page-virtualtour .showcase-overlay p,
body.page-virtualtour .showcase-overlay a {
    color: #fff;
}

body.page-virtualtour .groups-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

body.page-virtualtour .group-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #555;
    padding: 14px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    border-top: 4px solid #2f5fbd;
}

body.page-virtualtour .group-item i {
    color: #2f5fbd;
}

body.page-virtualtour .faq-list {
    max-width: 880px;
    margin: 0 auto;
}

body.page-virtualtour .faq-item {
    margin-bottom: 16px;
    overflow: hidden;
}

body.page-virtualtour .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
}

body.page-virtualtour .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.25s ease;
}

body.page-virtualtour .faq-answer.is-open {
    max-height: 700px;
}

body.page-virtualtour .faq-answer p {
    padding: 0 0 20px;
}

body.page-virtualtour .cta {
    background: #e5e5e5;
    color: #555;
    text-align: center;
}

body.page-virtualtour .cta p {
    margin-bottom: 18px;
    color: #555;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    body.page-virtualtour .card-with-iframe,
    body.page-virtualtour .benefits-grid,
    body.page-virtualtour .process-steps,
    body.page-virtualtour .showcase-grid {
        grid-template-columns: 1fr;
    }

    body.page-virtualtour .card-container-grid,
    body.page-virtualtour .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    body.page-virtualtour .hero {
    margin-top: 80px;
    min-height: 430px;
    padding: 76px 0 68px;
    color: #fff;
    text-align: left;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(193,188,188,0.8)), url('https://skeyemap.com/images/hero-bg.jpg') center/cover no-repeat;
}

    body.page-virtualtour .hero h1 {
        font-size: 2rem;
    }

    body.page-virtualtour .hero-subtitle {
    max-width: 980px;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.94);
    font-size: 1.16rem;
    line-height: 1.7;
}

    body.page-virtualtour .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
}

    body.page-virtualtour .hero-buttons .btn {
        width: 100%;
    }

    body.page-virtualtour .card-iframe,
    body.page-virtualtour .map-placeholder {
        min-height: 280px;
        height: 280px;
    }

    body.page-virtualtour .card-container-grid,
    body.page-virtualtour .services-grid {
        grid-template-columns: 1fr;
    }

    body.page-virtualtour .group-item {
        width: 100%;
        justify-content: center;
    }
}
/* ===== VIRTUALNE PREHLIADKY SHOWCASE LEGEND FIX ===== */
body.page-virtualtour .showcase-item {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

body.page-virtualtour .showcase-item picture {
    flex: 0 0 auto;
    height: 240px;
}

body.page-virtualtour .showcase-overlay {
    position: static;
    inset: auto;
    padding: 18px 18px 20px;
    color: #555;
    background: #fff;
    text-align: center;
}

body.page-virtualtour .showcase-overlay p,
body.page-virtualtour .showcase-overlay a {
    color: #555;
}

body.page-virtualtour .showcase-overlay .showcase-title,
body.page-virtualtour .showcase-overlay .showcase-title strong {
    color: #2b55b9;
}

body.page-virtualtour .showcase-overlay .btn-small {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
    color: #2f5f9d;
}

@media (max-width: 576px) {
    body.page-virtualtour .showcase-item picture {
        height: 220px;
    }
}
/* ===== VIRTUALNE PREHLIADKY HOMEPAGE CARD VISUAL REFRESH ===== */
body.page-virtualtour .card,
body.page-virtualtour .benefit-card,
body.page-virtualtour .service-card,
body.page-virtualtour .step,
body.page-virtualtour .faq-item,
body.page-virtualtour .group-item {
    background: #efefef;
    border-top: 4px solid #2f5fbd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

body.page-virtualtour .card,
body.page-virtualtour .benefit-card,
body.page-virtualtour .service-card,
body.page-virtualtour .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px;
    min-height: 100%;
}

body.page-virtualtour .intro-banner-card {
    justify-content: space-between;
    gap: 14px;
}

body.page-virtualtour .intro-banner-card .service-icon,
body.page-virtualtour .benefit-icon,
body.page-virtualtour .service-icon {
    color: #2f5fbd;
    font-size: 3rem;
    line-height: 1;
    margin: 0 0 12px;
    text-align: center;
}

body.page-virtualtour .intro-banner-card .service-icon i,
body.page-virtualtour .benefit-icon i,
body.page-virtualtour .service-icon i {
    font-size: inherit;
}

body.page-virtualtour .card h3,
body.page-virtualtour .benefit-card h3,
body.page-virtualtour .service-card h3,
body.page-virtualtour .step h3 {
    color: #2b55b9;
    font-size: 1.55rem;
    line-height: 1.2;
    margin: 0 0 12px;
    text-align: center;
}

body.page-virtualtour .card p,
body.page-virtualtour .benefit-card p,
body.page-virtualtour .service-card p,
body.page-virtualtour .step p {
    color: #5f6470;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 18px;
    text-align: center;
}

body.page-virtualtour .intro-banner-card .text-center1 {
    margin-top: auto;
    width: 100%;
}

body.page-virtualtour .intro-banner-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    background: #2f5f9d;
    border: 1px solid #2f5f9d;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

body.page-virtualtour .card-with-iframe {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.65fr);
    align-items: stretch;
    padding: 0;
    background: #efefef;
}

body.page-virtualtour .card-with-iframe .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.page-virtualtour .step-number {
    background: #2f5fbd;
    color: #fff;
}

body.page-virtualtour .group-item {
    background: #efefef;
}
/* ===== VIRTUALTOUR MAIN IFRAME LAYOUT ===== */
body.page-virtualtour .vp-main-container,
body.page-virtualtour .vp-banner-container {
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(47, 95, 189, 0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body.page-virtualtour .vp-main-container {
    margin-bottom: 34px;
}

body.page-virtualtour .vp-banner-container {
    margin-top: 0;
    background: #f7f8fb;
}
body.page-virtualtour .vp-split-banners {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    gap: 30px;
    align-items: stretch;
}

body.page-virtualtour .vp-text-banner,
body.page-virtualtour .vp-map-banner {
    border: 1px solid rgba(47, 95, 189, 0.18);
    border-top: 4px solid #2f5fbd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    background: #efefef;
}

body.page-virtualtour .vp-text-banner {
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
    padding: 28px;
    text-align: left;
}

body.page-virtualtour .vp-text-banner h3,
body.page-virtualtour .vp-text-banner p {
    text-align: left;
}

body.page-virtualtour .vp-text-banner .btn {
    width: auto;
    align-self: flex-start;
}

body.page-virtualtour .vp-map-banner {
    min-height: 0;
    padding: 14px;
    overflow: hidden;
    aspect-ratio: auto;
}

body.page-virtualtour .vp-map-banner iframe {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    display: block;
    border: 0;
    border-radius: 5px;
}


body.page-virtualtour .vp-map-placeholder {
    position: absolute;
    inset: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 252px;
    border-radius: 5px;
    overflow: hidden;
    background: linear-gradient(rgba(27, 45, 75, 0.18), rgba(27, 45, 75, 0.28)), url('https://skeyemap.com/images/Carlton.webp') center/cover no-repeat;
}

body.page-virtualtour .vp-map-loader {
    position: relative;
    width: min(58%, 360px);
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 8px 22px rgba(0, 0, 0, 0.18);
}

body.page-virtualtour .vp-map-loader span {
    position: absolute;
    inset: 0;
    width: 42%;
    border-radius: inherit;
    background: #ffffff;
    animation: vpMapLoading 1.05s ease-in-out infinite;
}

@keyframes vpMapLoading {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(260%); }
}

@media (prefers-reduced-motion: reduce) {
    body.page-virtualtour .vp-map-loader span {
        animation: none;
        width: 100%;
        opacity: 0.85;
    }
}
@media (max-width: 992px) {
    body.page-virtualtour .vp-split-banners {
        grid-template-columns: 1fr;
    }

    body.page-virtualtour .vp-text-banner,
    body.page-virtualtour .vp-text-banner h3,
    body.page-virtualtour .vp-text-banner p {
        text-align: center;
        align-items: center;
    }

    body.page-virtualtour .vp-text-banner .btn {
        align-self: center;
    }
}
@media (max-width: 576px) {
    body.page-virtualtour .vp-main-container,
    body.page-virtualtour .vp-banner-container {
        padding: 16px;
    }
}

/* ===== VIRTUALNE PREHLIADKY SHOWCASE ACTIONS ===== */
body.page-virtualtour .showcase-media {
    flex: 0 0 auto;
    display: block;
    height: 240px;
}

body.page-virtualtour .showcase-iframe {
    position: relative;
    overflow: hidden;
    background: #eef1f7;
}

body.page-virtualtour .showcase-iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

body.page-virtualtour .showcase-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

body.page-virtualtour .showcase-actions .btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 13px 18px;
    border: 0;
    border-radius: 5px;
    background: #3f65aa;
    color: #fff;
    font: inherit;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}


body.page-virtualtour .showcase-actions .showcase-open {
    background: #315b99;
}

body.page-virtualtour .showcase-actions .btn-small:hover,
body.page-virtualtour .showcase-actions .btn-small:focus-visible {
    background: #294f88;
    color: #fff;
    transform: translateY(-1px);
}

body.page-virtualtour .showcase-actions .btn-small:disabled {
    background: #8b98aa;
    cursor: default;
    transform: none;
}

@media (max-width: 576px) {
    body.page-virtualtour .showcase-media {
        height: 220px;
    }
}




body.page-virtualtour .showcase-more {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}


/* ===== ROZSIRENE VIRTUALNE PREHLIADKY SECTION BACKGROUNDS ===== */
body.page-extendedtour #rozsirena_vp,
body.page-extendedtour #spolupraca,
body.page-extendedtour #cielove-skupiny {
    background: #e5e5e5;
}

body.page-extendedtour #preco_investovat,
body.page-extendedtour #co_ponukaju,
body.page-extendedtour #ukazky {
    background: #ffffff;
}

body.page-extendedtour #spolupraca .step-number {
    background: #2f5fbd;
    color: #ffffff;
}


/* ===== ROZSIRENE VIRTUALNE PREHLIADKY CARD CONTRAST ===== */
body.page-extendedtour #preco_investovat .services-grid-12,
body.page-extendedtour #spolupraca .services-grid-3,
body.page-extendedtour #cielove-skupiny .services-grid-4 {
    padding: 24px;
    border: 1px solid rgba(47, 95, 189, 0.14);
    border-radius: 8px;
    background: #f7f8fb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body.page-extendedtour #preco_investovat .services-card,
body.page-extendedtour #spolupraca .services-card,
body.page-extendedtour #cielove-skupiny .services-card {
    background: #ffffff;
    border-top-color: #2f5fbd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    padding: 26px;
}

body.page-extendedtour #rozsirena_vp .vp-text-banner,
body.page-extendedtour #rozsirena_vp .vp-map-banner,
body.page-extendedtour #rozsirena_vp .intro-banner-card {
    background: #f9fafc;
}

body.page-extendedtour #co_ponukaju .services-card,
body.page-extendedtour #ukazky .services-card {
    background: #efefef;
}

@media (max-width: 576px) {
    body.page-extendedtour #preco_investovat .services-grid-12,
    body.page-extendedtour #spolupraca .services-grid-3,
    body.page-extendedtour #cielove-skupiny .services-grid-4 {
        padding: 16px;
    }
}

/* ===== SHARED CARD CONTRAST BY SECTION BACKGROUND ===== */
/* Homepage: sivé sekcie dostanú svetlý podklad a svetlé bannery. */
body:not(.page-virtualtour) #virtualne_prehliadky .virtual-tour-grid {
    padding: 24px;
    border: 1px solid rgba(47, 95, 189, 0.14);
    border-radius: 8px;
    background: #f7f8fb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body:not(.page-virtualtour) #virtualne_prehliadky .services-card {
    background: #ffffff;
}

/* Virtuálne prehliadky: karty v sivých pásoch sú svetlejšie a s vlastným podkladom. */
body.page-virtualtour:not(.page-extendedtour) .process .process-steps,
body.page-virtualtour:not(.page-extendedtour) .target-groups .groups-grid {
    padding: 24px;
    border: 1px solid rgba(47, 95, 189, 0.14);
    border-radius: 8px;
    background: #f7f8fb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body.page-virtualtour:not(.page-extendedtour) #virtualna-prehliadka .vp-text-banner,
body.page-virtualtour:not(.page-extendedtour) #virtualna-prehliadka .vp-map-banner,
body.page-virtualtour:not(.page-extendedtour) #virtualna-prehliadka .intro-banner-card,
body.page-virtualtour:not(.page-extendedtour) .process .step,
body.page-virtualtour:not(.page-extendedtour) .target-groups .group-item {
    background: #ffffff;
}

/* Na bielych sekciách ponechávame tmavšie sivé bannery kvôli kontrastu. */
body.page-virtualtour:not(.page-extendedtour) .benefits .benefit-card,
body.page-virtualtour:not(.page-extendedtour) .services .service-card,
body.page-virtualtour:not(.page-extendedtour) .showcase .showcase-item,
body.page-virtualtour:not(.page-extendedtour) .faq .faq-item,
body:not(.page-virtualtour) .section-2 .services-card,
body:not(.page-virtualtour) #prezentacne_portaly .services-card {
    background: #efefef;
}

@media (max-width: 576px) {
    body:not(.page-virtualtour) #virtualne_prehliadky .virtual-tour-grid,
    body.page-virtualtour:not(.page-extendedtour) .process .process-steps,
    body.page-virtualtour:not(.page-extendedtour) .target-groups .groups-grid {
        padding: 16px;
    }
}

/* ===== FOOTER ACCESSIBLE CONTRAST ===== */
.footer,
.footer p,
.footer li,
.footer span,
.footer-bottom p {
    color: #f1f5f9;
}

.footer-about p,
.footer-contact li,
.footer-links a,
.footer-services a,
.footer-contact a,
.footer-social a {
    color: #f1f5f9;
}

.footer-title,
.footer-title strong,
.footer h3 {
    color: #ffffff;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover,
.footer-social a:hover,
.footer-links a:focus-visible,
.footer-services a:focus-visible,
.footer-contact a:focus-visible,
.footer-social a:focus-visible {
    color: #7dd3fc;
}

/* ===== FOOTER CONTRAST FINAL OVERRIDE ===== */
.footer,
.footer p,
.footer li,
.footer span,
.footer-bottom p,
.footer-about p,
.footer-contact li,
.footer-links a,
.footer-services a,
.footer-contact a,
.footer-social a {
    color: #f8fafc !important;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover,
.footer-social a:hover,
.footer-links a:focus-visible,
.footer-services a:focus-visible,
.footer-contact a:focus-visible,
.footer-social a:focus-visible {
    color: #7dd3fc !important;
}
