/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/* Blog Section Styles */
.blog_item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog_img {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 250px;
}

.blog_img img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_item:hover .blog_img img {
    transform: scale(1.05);
}

.blog_content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog_content h3 {
    margin-bottom: 15px;
    line-height: 1.3;
    height: 3.9em;
    overflow: hidden;
}

.blog_content p {
    flex-grow: 1;
    margin-bottom: 15px;
}

.read_more {
    margin-top: auto;
}

/* Horizontal Blog Items */
.blog_item_horizontal {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.blog_item_horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog_item_horizontal .blog_img {
    height: 200px;
}

.blog_item_horizontal .blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_item_horizontal .blog_content {
    display: flex;
    flex-direction: column;
    height: 200px;
    justify-content: space-between;
}

.blog_item_horizontal .blog_content h4 {
    line-height: 1.3;
    margin-bottom: 10px;
}

.blog_item_horizontal .blog_content p {
    flex-grow: 1;
    margin-bottom: 10px;
}

.blog_item_horizontal .read_more {
    margin-top: auto;
}

.blog_overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.blog_category .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog_content {
    padding: 25px;
}

.blog_meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.blog_meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog_content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog_content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog_content h3 a:hover {
    color: #e67e22;
}

.blog_content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read_more {
    color: #e67e22;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read_more:hover {
    color: #d35400;
    gap: 12px;
}

/* Horizontal Blog Items */
.blog_item_horizontal {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.blog_item_horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog_item_horizontal .blog_content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog_item_horizontal .blog_content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog_item_horizontal .blog_content h4 a:hover {
    color: #e67e22;
}

.blog_item_horizontal .blog_content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog_content {
        padding: 20px;
    }
    
    .blog_meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog_item_horizontal .blog_content {
        padding: 20px;
    }
}

/* Animation enhancements */
@media (prefers-reduced-motion: no-preference) {
    .blog_item,
    .blog_item_horizontal {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .blog_item:nth-child(1) { animation-delay: 0.1s; }
    .blog_item:nth-child(2) { animation-delay: 0.2s; }
    .blog_item:nth-child(3) { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Page Specific Styles */
.hero_single {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    color: #333;
    position: relative;
    border-bottom: 3px solid #e67e22;
}

.hero_single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/parallax_bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero_single .container {
    position: relative;
    z-index: 1;
}

.hero_single .wrapper {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.hero_single h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
}

.hero_single .lead {
    color: #666;
    font-size: 1.1rem;
}

.hero_single small {
    color: #e67e22;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #e67e22;
}

.breadcrumb-item.active {
    color: #333;
}

/* Category Filters */
.blog_categories {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.category_filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category_btn {
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.category_btn:hover,
.category_btn.active {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
    transform: translateY(-2px);
}

/* Featured Article */
.featured_article {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.featured_img {
    position: relative;
    margin-bottom: 0;
}

.featured_badge {
    background: #e67e22;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-left: 10px;
    font-weight: 600;
}

.featured_content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured_content h2 a {
    color: #333;
    text-decoration: none;
}

.featured_content h2 a:hover {
    color: #e67e22;
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: #666;
    padding: 12px 16px;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: #e67e22;
    color: white;
}

.pagination .page-link:hover {
    background: #f8f9fa;
    color: #e67e22;
}

/* Newsletter */
.newsletter_section {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.newsletter_form .input-group {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter_form .form-control {
    border: none;
    padding: 12px 20px;
    border-radius: 25px 0 0 25px;
}

.newsletter_form .btn_1 {
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-weight: 600;
}

/* Blog Post Styles */
.blog_post_header {
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.social_sharing {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    color: #666;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social_btn:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
}

.blog_post_image {
    position: relative;
}

.blog_post_content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.blog_post_content h2 {
    color: #333;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.8rem;
}

.blog_post_content h3 {
    color: #333;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
}

.blog_quote {
    background: #f8f9fa;
    border-left: 4px solid #e67e22;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.2rem;
}

.blog_quote footer {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.wellness_services {
    list-style: none;
    padding: 0;
}

.wellness_services li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.wellness_services li:last-child {
    border-bottom: none;
}

.wellness_feature {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.wellness_feature h4 {
    color: #e67e22;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta_section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef) !important;
    border: 2px solid #e67e22;
}

.blog_tags {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #e67e22;
    color: white;
}

/* Sidebar Styles */
.blog_sidebar {
    padding-left: 2rem;
}

.sidebar_widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sidebar_widget h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e67e22;
}

.author_info {
    display: flex;
    gap: 1rem;
}

.author_avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author_details h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

.author_social {
    margin-top: 1rem;
}

.author_social a {
    color: #666;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.author_social a:hover {
    color: #e67e22;
}

.recent_post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.recent_post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent_post_img {
    flex-shrink: 0;
}

.recent_post_img img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.recent_post_content h6 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.recent_post_content h6 a {
    color: #333;
    text-decoration: none;
}

.recent_post_content h6 a:hover {
    color: #e67e22;
}

.recent_post_date {
    font-size: 0.8rem;
    color: #666;
}

.categories_widget ul {
    list-style: none;
    padding: 0;
}

.categories_widget li {
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}

.categories_widget li:last-child {
    border-bottom: none;
}

.categories_widget a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories_widget a:hover {
    color: #e67e22;
}

.categories_widget span {
    background: #f8f9fa;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero_single h1 {
        font-size: 1.8rem;
    }
    
    .category_filters {
        justify-content: center;
    }
    
    .category_btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .featured_content {
        padding: 2rem !important;
    }
    
    .blog_sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .author_info {
        flex-direction: column;
        text-align: center;
    }
    
    .recent_post {
        flex-direction: column;
    }
    
    .recent_post_img img {
        width: 100%;
        height: 150px;
    }
}

/* Fixed Header Always Sticky Style */
header.fixed_header {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

header.fixed_header .layer {
    display: none !important;
}

.fixed_header {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 5px 0 !important;
    min-height: auto !important;
}

.fixed_header .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.fixed_header .row {
    margin: 0 !important;
    align-items: center !important;
}

.fixed_header .logo_normal {
    display: none !important;
}

.fixed_header .logo_sticky {
    display: block !important;
}

.fixed_header .main-menu ul li a {
    color: #333 !important;
    position: relative;
    transition: color 0.3s ease;
}

.fixed_header .main-menu ul li a:hover {
    color: #B8860B !important;
}

/* Underline hover efekt pre navigáciu - všetky stavy */
.main-menu ul li a:not(.btn_1),
.fixed_header .main-menu ul li a:not(.btn_1) {
    position: relative;
    transition: color 0.3s ease;
}

.main-menu ul li a:not(.btn_1)::after,
.fixed_header .main-menu ul li a:not(.btn_1)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #B8860B;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-menu ul li a:not(.btn_1):hover::after,
.fixed_header .main-menu ul li a:not(.btn_1):hover::after {
    width: 100%;
}

/* Hover farba pre navigačné odkazy */
.main-menu ul li a:not(.btn_1):hover,
.fixed_header .main-menu ul li a:not(.btn_1):hover {
    color: #B8860B !important;
}

.fixed_header .hamburger__inner,
.fixed_header .hamburger__inner::before,
.fixed_header .hamburger__inner::after {
    background-color: #333 !important;
}

/* Mobile Menu Fix - Ensure full height display */
@media only screen and (max-width: 991px) {
    .fixed_header .main-menu {
        height: 100vh !important;
        overflow-y: auto !important;
        z-index: 99999 !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
    
    .fixed_header .main-menu.show {
        transform: translateX(0) !important;
    }
    
    /* Ensure the header doesn't clip the mobile menu */
    .fixed_header {
        overflow: visible !important;
    }
    
    /* Make sure mobile menu is above everything */
    body.mobile_menu_open {
        overflow: hidden;
    }
    
    /* Mobile menu contact info styling - ZOBRAZUJ LEN V MOBILE */
    .mobile_menu_contact {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        display: block !important; /* force display v mobile */
    }
    
    .mobile_menu_contact .contact_item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        color: #666;
        font-size: 14px;
    }
    
    .mobile_menu_contact .contact_item i {
        font-size: 16px;
        margin-right: 12px;
        color: #978667;
        width: 20px;
        text-align: center;
    }
    
    .mobile_menu_contact .contact_item:last-child {
        margin-bottom: 0;
    }
}

/* Skryť mobilné kontakty defaultne (desktop) - PRESUNUŤ NA KONIEC */
.mobile_menu_contact {
    display: none !important; /* force hide na desktop */
}

/* Room Image Wrapper - nahrada za carousel - ALTERNATÍVA */
.room_image_wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 600px; /* ešte vyššia výška pre cover */ /* zvýšená výška */
}

.room_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* zachová celý obrázok bez orezania */
    object-position: center center; /* centruje obrázok */
    transition: transform 0.3s ease;
}

.room_image_wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .room_image_wrapper {
        height: 300px; /* na mobile väčšia výška */
        margin-bottom: 2rem;
    }
}

/* Facilities ikony v zlatej farbe */
.facilities ul li i {
    color: #978667 !important;
}

.box_facilities i {
    color: #978667 !important;
}

/* Facilities list styling */
.facilities-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.facilities-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
}

.facilities-list li i {
    position: absolute;
    left: 0;
    color: #978667;
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

.facilities-list li img {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(58%) sepia(8%) saturate(1015%) hue-rotate(19deg) brightness(88%) contrast(89%);
}

.facilities-list li:before {
    display: none; /* skryje pôvodné bullets */
}

/* Gallery Carousel - jednotná veľkosť obrázkov */
.owl-carousel .item {
    position: relative;
    height: 400px; /* Fixná výška pre všetky obrázky */
    overflow: hidden;
    border-radius: 12px;
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Orezanie obrázka na presné rozmery */
    object-position: center; /* Centruje obrázok pri orezaní */
    transition: transform 0.3s ease;
}

.owl-carousel .item:hover img {
    transform: scale(1.05); /* Jemný zoom efekt pri hover */
}

/* Responzívne úpravy pre menšie obrazovky */
@media (max-width: 768px) {
    .owl-carousel .item {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .owl-carousel .item {
        height: 250px;
    }
}

/* Štýly pre majiteľa chaty v kontakt sekcii */
.contact-owner {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.owner-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

.owner-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.owner-info small {
    color: #666;
    font-size: 14px;
}

.billing-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.billing-info h5 {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

/* Fixné rezervačné tlačidlo */
.fixed-booking-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(45deg, #1a4b84, #2c5aa0);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(26, 75, 132, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.fixed-booking-btn:hover {
    background: linear-gradient(45deg, #B8860B, #DAA520);
    color: #fff;
    transform: scale(1.05);
    animation: none;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(26, 75, 132, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(26, 75, 132, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(26, 75, 132, 0.3);
    }
}

/* Responzívne štýly pre fixné tlačidlo */
@media (max-width: 768px) {
    .fixed-booking-btn {
        display: none !important; /* Skryť na mobiloch */
    }
}

@media (max-width: 480px) {
    .fixed-booking-btn {
        display: none !important; /* Skryť na mobiloch */
    }
}

@media (max-width: 360px) {
    .fixed-booking-btn {
        display: none !important; /* Skryť na mobiloch */
    }
}

/* Gallery fixes */
.owl-carousel .item {
    height: 300px;
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Page Styles */
.pricing_card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

.pricing_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #B8860B;
}

.pricing_header {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: white;
    padding: 30px 25px;
    text-align: center;
}

.pricing_header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

.pricing_header p {
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.capacity {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.pricing_table {
    padding: 0;
}

.pricing_table .table {
    margin: 0;
}

.pricing_table .table th {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    padding: 15px 12px;
    font-size: 14px;
}

.pricing_table .table td {
    border: none;
    padding: 15px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.pricing_table .table tbody tr:last-child td {
    border-bottom: none;
}

.pricing_table .price {
    font-size: 22px;
    font-weight: 700;
    color: #B8860B;
}

.amenities_list {
    padding: 25px;
    background: #f8f9fa;
}

.amenities_list h4 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.amenities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.amenities li i {
    color: #28a745;
    margin-right: 8px;
}

.included_services {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #28a745;
}

.included_services h3 {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 30px;
}

.included_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included_list li {
    padding: 12px 0;
    font-size: 16px;
    color: #333;
}

.included_list li i {
    margin-right: 12px;
    font-size: 18px;
}

.pricing_conditions {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing_conditions h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.condition_card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #B8860B;
}

.condition_card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.condition_card h4 i {
    margin-right: 8px;
}

.condition_card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition_card li {
    padding: 5px 0;
    color: #666;
}

.condition_card li strong {
    color: #333;
}

.cta_pricing {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
}

.cta_pricing h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta_pricing p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta_pricing .btn_1 {
    background: white;
    color: #B8860B;
    border: 2px solid white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
}

.cta_pricing .btn_1:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta_pricing .btn_1.outline {
    background: transparent;
    color: white;
    border-color: white;
}

.cta_pricing .btn_1.outline:hover {
    background: white;
    color: #B8860B;
}

/* Responsive adjustments */
/* Mobilná optimalizácia pre cenník */
@media (max-width: 768px) {
    .pricing_card {
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .pricing_header {
        padding: 2rem 1.5rem;
    }
    
    .pricing_header h3 {
        font-size: 1.4rem;
    }
    
    .pricing_table .table th,
    .pricing_table .table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
    
    .pricing_table .price {
        font-size: 1.2rem;
    }
    
    .condition_card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .condition_card h4 {
        font-size: 1.1rem;
    }
    
    .cta_pricing {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .cta_pricing h3 {
        font-size: 1.4rem;
    }
    
    .cta_pricing .btn_1 {
        padding: 12px 20px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .included_services {
        padding: 1.5rem;
    }
    
    .included_services h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .included_list {
        grid-template-columns: 1fr;
    }
    
    .included_list li {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .pricing_conditions {
        padding: 1.5rem;
    }
    
    .pricing_conditions h3 {
        font-size: 1.3rem;
        text-align: center;
    }
}

/* ========================================== */
/* KOMPLEXNÁ MOBILNÁ OPTIMALIZÁCIA */
/* ========================================== */

/* Základné mobilné nastavenia */
@media (max-width: 991px) {
    /* Typography optimalizácia */
    h1 { font-size: 2rem !important; line-height: 1.2; }
    h2 { font-size: 1.75rem !important; line-height: 1.3; }
    h3 { font-size: 1.5rem !important; line-height: 1.3; }
    h4 { font-size: 1.25rem !important; }
    
    /* Container padding */
    .container { padding-left: 20px; padding-right: 20px; }
    
    /* Margin adjustments */
    .margin_120_95 { margin: 60px 0 45px 0; }
    .margin_120 { margin: 60px 0; }
    
    /* Hero section */
    .hero h3 { 
        font-size: 1.8rem !important; 
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p { 
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn_1 {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 15px;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Navigation optimalizácia */
    .fixed_header .main-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
    }
    
    .main-menu ul li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-menu ul li a {
        padding: 18px 30px !important;
        font-size: 16px;
        display: block;
    }
    
    /* About section */
    .intro {
        text-align: center;
        margin-top: 2rem;
    }
    
    .intro .title h2 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem;
    }
    
    .intro p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    /* Facilities boxes */
    .box_facilities {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .box_facilities h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem;
    }
    
    .box_facilities p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Rooms section */
    .row_list_version_2 {
        margin-bottom: 3rem;
    }
    
    .box_item_info {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .box_item_info h2 {
        font-size: 1.4rem !important;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .box_item_info p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .facilities-list li {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
    
    /* Gallery section */
    .owl-carousel .item {
        height: 250px;
    }
    
    /* Contact section */
    .contact-owner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .owner-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    /* Formuláre */
    .booking_wrapper,
    .contacts_wrapper {
        padding: 1.5rem;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 15px;
    }
    
    .btn_1 {
        padding: 12px 20px;
        font-size: 1rem;
        min-height: 48px; /* Touch target size */
    }
    
    /* Tabs */
    .nav-tabs .nav-link {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
}

/* Tablet optimalizácia */
@media (max-width: 768px) {
    /* Logo adjustments */
    .logo_normal img,
    .logo_sticky img {
        max-width: 140px;
        height: auto;
    }
    
    /* Hero video adjustments */
    .hero.jarallax {
        min-height: 100vh;
        background-attachment: scroll !important;
    }
    
    .hero .container {
        padding: 2rem 1rem;
    }
    
    /* Image positioning */
    .parallax_wrapper {
        margin-bottom: 2rem;
    }
    
    .img_over {
        position: relative !important;
        margin-top: 1rem;
    }
    
    /* Room images */
    .room_image_wrapper {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    /* Pricing section adjustments */
    .pricing_card {
        margin-bottom: 2rem;
    }
    
    .pricing_header {
        padding: 2rem 1.5rem;
    }
    
    .pricing_table .table th,
    .pricing_table .table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    /* Accordion adjustments */
    .accordion .card {
        margin-bottom: 1rem;
    }
    
    .accordion .card-header a {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion .card-body {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Footer adjustments */
    .copy {
        text-align: center;
        padding: 1.5rem 0;
    }
    
    /* Map */
    .map_contact iframe {
        height: 300px;
    }
}

/* Smartphone optimalizácia */
@media (max-width: 480px) {
    /* Extra small typography */
    h1 { font-size: 1.6rem !important; }
    h2 { font-size: 1.4rem !important; }
    h3 { font-size: 1.2rem !important; }
    
    /* Container extra padding */
    .container { padding-left: 15px; padding-right: 15px; }
    
    /* Hero adjustments */
    .hero {
        padding: 3rem 0;
        min-height: 90vh;
    }
    
    .hero h3 { 
        font-size: 1.4rem !important;
        margin-bottom: 1rem;
    }
    
    .hero p { 
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero small {
        font-size: 0.8rem;
        display: block;
        margin-bottom: 1rem;
    }
    
    .hero figure img {
        max-width: 100px;
        height: auto;
    }
    
    /* Navigation extra small */
    .main-menu ul li a {
        padding: 16px 20px !important;
        font-size: 15px;
    }
    
    /* Buttons stack vertically */
    .hero .btn_1 {
        font-size: 0.9rem;
        padding: 12px 20px;
        margin: 0.25rem 0;
    }
    
    /* Box facilities smaller */
    .box_facilities {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .box_facilities h3 {
        font-size: 1.1rem !important;
    }
    
    .box_facilities p {
        font-size: 0.85rem;
    }
    
    /* Room info adjustments */
    .box_item_info {
        padding: 1.5rem 1rem;
    }
    
    .box_item_info h2 {
        font-size: 1.2rem !important;
    }
    
    .facilities-list li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .facilities-list li img {
        width: 16px;
        height: 16px;
    }
    
    /* Gallery smaller */
    .owl-carousel .item {
        height: 200px;
    }
    
    /* Contact form optimalization */
    .booking_wrapper,
    .contacts_wrapper {
        padding: 1rem;
    }
    
    .form-control {
        font-size: 16px;
        padding: 10px 12px;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .btn_1 {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* Quantity buttons smaller */
    .qty-buttons input {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
    
    /* Contact owner smaller */
    .contact-owner {
        padding: 1rem;
    }
    
    .owner-photo {
        width: 80px;
        height: 80px;
    }
    
    .billing-info {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    /* Fixed booking button adjustments */
    .fixed-booking-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
        border-radius: 40px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    /* Ultra compact */
    .container { padding-left: 10px; padding-right: 10px; }
    
    .hero h3 { font-size: 1.2rem !important; }
    .hero p { font-size: 0.85rem; }
    
    .box_facilities {
        padding: 0.8rem;
    }
    
    .box_item_info {
        padding: 1rem 0.8rem;
    }
    
    .booking_wrapper,
    .contacts_wrapper {
        padding: 0.8rem;
    }
    
    .form-control {
        padding: 8px 10px;
    }
    
    .btn_1 {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .fixed-booking-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Landscape phone optimalizácia */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero .container {
        max-width: 100%;
        padding: 1rem 2rem;
    }
    
    .hero .btn_1 {
        display: inline-block;
        width: auto;
        margin: 0.5rem 1rem 0.5rem 0;
    }
}

/* Touch optimalizácia */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .blog_item:hover,
    .pricing_card:hover,
    .box_facilities:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    .btn_1,
    .nav-link,
    .page-link {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Improve scrolling */
    .owl-carousel {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix iOS zoom issues */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper images for retina displays */
    .logo_normal img,
    .logo_sticky img {
        image-rendering: crisp-edges;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .fixed_header {
        background-color: rgba(30, 30, 30, 0.95) !important;
    }
    
    .fixed_header .main-menu ul li a {
        color: #333 !important;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .jarallax {
        transform: none !important;
    }
}

/* Print styles */
@media print {
    .fixed_header,
    .fixed-booking-btn,
    .map_contact {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ========================================== */
/* MOBILNÁ DOLNÁ NAVIGÁCIA */
/* ========================================== */

/* Skryť bottom nav na desktop */
.mobile-bottom-nav {
    display: none;
}

/* Zobraziť bottom nav len na mobilných zariadeniach */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff !important;
        background-color: rgba(255, 255, 255, 0.99) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(184, 134, 11, 0.2);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        z-index: 9998;
        height: 70px;
        align-items: center;
        justify-content: space-around;
        padding: 0 15px;
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #888;
        transition: all 0.3s ease;
        padding: 8px 4px;
        border-radius: 12px;
        min-width: 70px;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 20px;
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }
    
    .mobile-bottom-nav .nav-item span {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }
    
    /* Active state */
    .mobile-bottom-nav .nav-item.active {
        color: #B8860B;
        background: rgba(184, 134, 11, 0.1);
    }
    
    .mobile-bottom-nav .nav-item.active i {
        color: #B8860B;
        transform: scale(1.1);
    }
    
    .mobile-bottom-nav .nav-item.active span {
        color: #B8860B;
        font-weight: 600;
    }
    
    /* Hover effect */
    .mobile-bottom-nav .nav-item:hover {
        color: #DAA520;
        background: rgba(218, 165, 32, 0.1);
        transform: translateY(-2px);
    }
    
    /* Ripple effect */
    .mobile-bottom-nav .nav-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(184, 134, 11, 0.3);
        transition: all 0.3s ease;
        transform: translate(-50%, -50%);
        z-index: -1;
    }
    
    .mobile-bottom-nav .nav-item:active::before {
        width: 50px;
        height: 50px;
    }
    
    /* Ripple animation effect */
    .mobile-bottom-nav .nav-item .ripple {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 60px;
        height: 60px;
        background: rgba(184, 134, 11, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        animation: rippleEffect 0.6s ease-out;
        pointer-events: none;
        z-index: 0;
    }
    
    @keyframes rippleEffect {
        to {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0;
        }
    }
    
    /* Adjust body padding pre bottom nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Hide desktop menu on mobile completely */
    .fixed_header .main-menu {
        display: none !important;
    }
    
    .hamburger_2 {
        display: none !important;
    }
    
    /* Adjust fixed booking button position */
    .fixed-booking-btn {
        bottom: 85px; /* Above the bottom nav */
        z-index: 9999;
    }
}

/* Extra optimalization pre malé mobily */
@media (max-width: 480px) {
    .mobile-bottom-nav {
        height: 65px;
        padding: 0 5px;
    }
    
    .mobile-bottom-nav .nav-item {
        min-width: 55px;
        padding: 6px 2px;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .mobile-bottom-nav .nav-item span {
        font-size: 9px;
    }
    
    body {
        padding-bottom: 65px;
    }
    
    .fixed-booking-btn {
        bottom: 80px;
    }
}

/* Extra malé zariadenia */
@media (max-width: 360px) {
    .mobile-bottom-nav .nav-item span {
        font-size: 8px;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 16px;
    }
    
    .mobile-bottom-nav .nav-item {
        min-width: 50px;
    }
}

/* Landscape mode adjustments */
@media (max-width: 896px) and (orientation: landscape) {
    .mobile-bottom-nav {
        height: 60px;
    }
    
    .mobile-bottom-nav .nav-item {
        padding: 5px 2px;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .mobile-bottom-nav .nav-item span {
        font-size: 8px;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .fixed-booking-btn {
        bottom: 75px;
    }
}

/* ========================================== */
/* GALÉRIA STRÁNKA ŠTÝLY */
/* ========================================== */

/* Gallery Grid Layouts */
.gallery_grid {
    margin-left: -15px;
    margin-right: -15px;
}

.gallery_item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.gallery_item.large {
    height: 400px;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery_item:hover img {
    transform: scale(1.05);
}

.gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery_overlay:hover {
    text-decoration: none;
}

.gallery_item:hover .gallery_overlay {
    opacity: 1;
}

.gallery_overlay i {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.gallery_overlay:hover i {
    transform: scale(1.2);
}

/* Hero Section for Gallery */
.hero_single.version_2 {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.9), rgba(218, 165, 32, 0.8)), url('../img/parallax_bg.jpg') center/cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero_single.version_2 h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.hero_single.version_2 .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Gallery Categories */
.gallery_category {
    margin-bottom: 4rem;
}

.gallery_category .title {
    margin-bottom: 3rem;
}

.gallery_category .title h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.gallery_category .title small {
    color: #B8860B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.gallery_category .title p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery_item {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .gallery_item.large {
        height: 300px;
    }
    
    .hero_single.version_2 h1 {
        font-size: 2rem;
    }
    
    .hero_single.version_2 .lead {
        font-size: 1rem;
    }
    
    .gallery_category .title h2 {
        font-size: 1.8rem;
    }
    
    .gallery_overlay i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery_item {
        height: 200px;
    }
    
    .gallery_item.large {
        height: 250px;
    }
    
    .hero_single.version_2 h1 {
        font-size: 1.6rem;
    }
    
    .gallery_category .title h2 {
        font-size: 1.5rem;
    }
    
    .gallery_category .title p {
        font-size: 1rem;
    }
}

/* Lightbox Enhancements */
[data-fslightbox] {
    cursor: zoom-in;
}

/* Gallery Animation Delays */
.gallery_grid [data-cue="zoomIn"]:nth-child(1) { animation-delay: 0.1s; }
.gallery_grid [data-cue="zoomIn"]:nth-child(2) { animation-delay: 0.2s; }
.gallery_grid [data-cue="zoomIn"]:nth-child(3) { animation-delay: 0.3s; }
.gallery_grid [data-cue="zoomIn"]:nth-child(4) { animation-delay: 0.4s; }
.gallery_grid [data-cue="zoomIn"]:nth-child(5) { animation-delay: 0.5s; }
.gallery_grid [data-cue="zoomIn"]:nth-child(6) { animation-delay: 0.6s; }

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .mobile-bottom-nav {
        background: rgba(30, 30, 30, 0.95);
        border-top-color: rgba(184, 134, 11, 0.3);
    }
    
    .mobile-bottom-nav .nav-item {
        color: #ccc;
    }
    
    .mobile-bottom-nav .nav-item:hover {
        color: #DAA520;
        background: rgba(218, 165, 32, 0.2);
    }
}

/* iOS safe area support */
@supports (padding: max(0px)) {
    @media (max-width: 768px) {
        .mobile-bottom-nav {
            padding-bottom: max(env(safe-area-inset-bottom), 10px);
            height: calc(70px + env(safe-area-inset-bottom));
        }
        
        body {
            padding-bottom: calc(70px + env(safe-area-inset-bottom));
        }
    }
}

/* ========================================== */
/* 3D VIRTUÁLNA PREHLIADKA ŠTÝLY */
/* ========================================== */

/* Virtual Tour Container */
.virtual_tour_wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.virtual_tour_wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* iframe štýly */
.virtual_tour_iframe {
    border-radius: 15px;
    min-height: 600px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

/* Tour Overlay (pre preview obrázok ak treba) */
.tour_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour_overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.tour_play_button {
    text-align: center;
    color: white;
}

.tour_play_button i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #B8860B;
    transition: all 0.3s ease;
}

.tour_play_button:hover i {
    color: #DAA520;
    transform: scale(1.1);
}

.tour_play_button span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tour Controls Info */
.tour_controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tour_control_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tour_control_item i {
    color: #B8860B;
    font-size: 1rem;
}

.tour_control_item:hover {
    background: #B8860B;
    color: white;
    border-color: #B8860B;
}

.tour_control_item:hover i {
    color: white;
}

/* Virtual Tour Section Title */
#virtual_tour .title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

#virtual_tour .title small {
    color: #B8860B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

#virtual_tour .title p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Loading animation pre iframe */
.virtual_tour_iframe {
    background: 
        linear-gradient(90deg, #f0f0f0 25%, transparent 25%), 
        linear-gradient(90deg, transparent 75%, #f0f0f0 75%), 
        linear-gradient(90deg, #f0f0f0 25%, transparent 25%), 
        linear-gradient(90deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 0, 10px 10px, 10px 10px;
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responzívne štýly */
@media (max-width: 992px) {
    .virtual_tour_iframe {
        min-height: 500px;
    }
    
    #virtual_tour .title h2 {
        font-size: 2rem;
    }
    
    .tour_controls {
        flex-direction: column;
        align-items: center;
    }
    
    .tour_control_item {
        width: auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .virtual_tour_iframe {
        min-height: 400px;
        border-radius: 10px;
    }
    
    .virtual_tour_wrapper {
        border-radius: 10px;
    }
    
    #virtual_tour .title h2 {
        font-size: 1.8rem;
    }
    
    #virtual_tour .title p {
        font-size: 1rem;
    }
    
    .tour_play_button i {
        font-size: 3rem;
    }
    
    .tour_play_button span {
        font-size: 1rem;
    }
    
    .tour_control_item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .virtual_tour_iframe {
        min-height: 300px;
    }
    
    #virtual_tour .title h2 {
        font-size: 1.5rem;
    }
    
    .tour_play_button i {
        font-size: 2.5rem;
    }
    
    .tour_controls {
        gap: 0.5rem;
    }
    
    .tour_control_item {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* Fullscreen support */
.virtual_tour_iframe:fullscreen {
    border-radius: 0;
}

.virtual_tour_iframe:-webkit-full-screen {
    border-radius: 0;
}

.virtual_tour_iframe:-moz-full-screen {
    border-radius: 0;
}

/* Dark mode support pre 3D tour */
@media (prefers-color-scheme: dark) {
    .virtual_tour_wrapper {
        background: #2a2a2a;
    }
    
    .tour_control_item {
        background: #3a3a3a;
        border-color: #4a4a4a;
        color: #ccc;
    }
    
    .tour_control_item:hover {
        background: #B8860B;
        color: white;
    }
}

/* ========================================== */
/* VIP VERNOSTNÁ KARTA - Kvíz štýly */
/* ========================================== */

/* Kvíz štýly - ponechané funkčné štýly */
.quiz_container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
}

.quiz_question {
    display: none;
    text-align: center;
}

.quiz_question.active {
    display: block;
}

.quiz_question h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.quiz_options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quiz_option {
    background: white;
    border: 2px solid #e9ecef;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quiz_option:hover {
    border-color: #B8860B;
    background: rgba(184, 134, 11, 0.1);
    transform: translateY(-2px);
}

.quiz_option.selected {
    background: #B8860B;
    color: white;
    border-color: #B8860B;
}

.quiz_option.correct.selected {
    background: #28a745;
    border-color: #28a745;
}

.quiz_option.wrong.selected {
    background: #dc3545;
    border-color: #dc3545;
}

.quiz_navigation {
    margin-top: 2rem;
    text-align: center;
}

.btn_quiz_nav {
    background: #B8860B;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    margin: 0 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn_quiz_nav:hover {
    background: #DAA520;
    transform: scale(1.05);
}

.quiz_result {
    text-align: center;
    padding: 2rem 0;
}

.quiz_result h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.result_score {
    font-size: 2.5rem;
    font-weight: bold;
    color: #B8860B;
    margin-bottom: 1rem;
}

.result_message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.urgency_banner {
    background: linear-gradient(45deg, #dc3545, #e74c3c);
    padding: 1.5rem;
    border-radius: 15px;
    animation: urgencyPulse 2s infinite;
}

.urgency_content h4 {
    color: white;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Benefit Cards */
.benefit_card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.benefit_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #B8860B;
}

.benefit_card.premium {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: white;
}

.benefit_card.premium:hover {
    border-color: #DAA520;
}

.benefit_icon {
    width: 70px;
    height: 70px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit_card.premium .benefit_icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit_icon i {
    font-size: 1.8rem;
    color: #B8860B;
}

.benefit_card.premium .benefit_icon i {
    color: white;
}

.benefit_card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit_card.premium h3 {
    color: white;
}

.benefit_card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: #666;
}

.benefit_card.premium p {
    color: rgba(255, 255, 255, 0.9);
}

.benefit_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit_list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.benefit_card.premium .benefit_list li {
    color: rgba(255, 255, 255, 0.9);
}

.benefit_list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.benefit_card.premium .benefit_list li:before {
    color: #DAA520;
}

/* VIP Ways */
.vip_way {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.vip_way_number {
    width: 60px;
    height: 60px;
    background: #B8860B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
    color: white;
}

.vip_way h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.vip_way p {
    opacity: 0.9;
    margin: 0;
}

/* Calculator */
.calculator_wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.calculator_form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: #333;
}

.savings_result {
    text-align: center;
}

.result_box {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
}

.result_box h3 {
    margin-bottom: 1rem;
    color: white;
}

.savings_amount {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
    color: white;
}

.savings_breakdown {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.breakdown_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown_item:last-child {
    border-bottom: none;
}

/* Registration Methods */
.method_card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.method_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.method_icon {
    width: 70px;
    height: 70px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.method_icon i {
    font-size: 1.8rem;
    color: #B8860B;
}

.method_card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.method_card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Registration Form */
.registration_form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.registration_form h3 {
    color: #333;
    margin-bottom: 2rem;
}

/* CTA Urgency */
.cta_urgency {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 2rem 0;
    display: inline-block;
}

.urgency_text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.urgency_text i {
    font-size: 1.2rem;
    color: #DAA520;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero_stats {
        gap: 1rem;
    }
    
    .stat_item strong {
        font-size: 1.5rem;
    }
    
    .stat_item span {
        font-size: 0.8rem;
    }
    
    .benefit_card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .calculator_wrapper {
        padding: 2rem 1.5rem;
    }
    
    .savings_amount {
        font-size: 2rem;
    }
    
    .method_card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .registration_form {
        padding: 1.5rem;
    }
    
    .vip_way {
        margin-bottom: 3rem;
    }
    
    .cta_urgency {
        padding: 0.8rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .urgency_text {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero_stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefit_card {
        padding: 1rem;
    }
    
    .benefit_icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit_icon i {
        font-size: 1.5rem;
    }
    
    .calculator_wrapper {
        padding: 1.5rem 1rem;
    }
    
    .result_box {
        padding: 1.5rem;
    }
    
    .savings_amount {
        font-size: 1.8rem;
    }
    
    .method_card {
        padding: 1rem;
    }
    
    .method_icon {
        width: 60px;
        height: 60px;
    }
    
    .vip_way_number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Form Enhancements */
.form-control:focus,
.form-select:focus {
    border-color: #B8860B;
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

.form-check-input:checked {
    background-color: #B8860B;
    border-color: #B8860B;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

/* Facility Icons */
.facility-icon {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.box_facilities:hover .facility-icon {
    transform: scale(1.1);
}

/* VIP Card Modern Styles */
.vip-hero-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 24px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.1);
    transition: all 0.4s ease;
}

.vip-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    border-radius: 24px;
    z-index: -1;
    padding: 2px;
    margin: -2px;
}

.vip-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.2);
}

.vip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.vip-title {
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.vip-savings {
    font-weight: 600;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    -webkit-background-clip: text;
    background-clip: text;
}

.vip-subtitle {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
}

/* VIP Buttons */
.vip-cta-buttons .btn_1 {
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.vip-primary {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    border: none;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.vip-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4);
}

.vip-secondary:hover {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: white;
    transform: translateY(-2px);
}

/* VIP Benefit Cards */
.vip-benefit-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    border: 1px solid #e9ecef;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.vip-benefit-card:hover::before {
    transform: translateX(0);
}

.vip-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #B8860B;
}

.vip-accommodation-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}

.vip-toggle-btn {
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #B8860B;
}

.vip-toggle-btn:hover {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

/* VIP Feature Cards */
.vip-feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.vip-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.05), rgba(218, 165, 32, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vip-feature-card:hover::before {
    opacity: 1;
}

.vip-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: #B8860B;
}

.vip-icon-wrapper {
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.vip-icon-wrapper i {
    color: white;
    font-size: 2rem;
}

.vip-feature-card:hover .vip-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
}

/* VIP Method Cards */
.vip-method-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    border: 1px solid #e9ecef;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #B8860B;
}

.vip-method-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

/* VIP Contact Cards */
.vip-contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vip-contact-icon {
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.vip-contact-icon i {
    color: white;
    font-size: 1.8rem;
}

.vip-contact-card:hover .vip-contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.vip-contact-btn {
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #B8860B;
}

.vip-contact-btn:hover {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

/* VIP Form */
.vip-form-wrapper {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.vip-form .form-floating {
    position: relative;
}

.vip-form .form-control {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 1rem;
}

.vip-form .form-control:focus {
    border-color: #B8860B;
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

.vip-submit-btn {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.vip-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4);
}

/* Animations */
@keyframes vipPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.vip-badge {
    animation: vipPulse 2s infinite ease-in-out;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .vip-hero-card {
        border-radius: 20px;
        padding: 25px;
    }
    
    .vip-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .vip-cta-buttons .btn_1 {
        padding: 12px 25px;
        margin-bottom: 10px;
        display: block;
        text-align: center;
    }
    
    .vip-accommodation-icon,
    .vip-method-icon {
        font-size: 2.5rem;
    }
    
    .vip-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .vip-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .vip-contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .vip-contact-icon i {
        font-size: 1.5rem;
    }
}

