﻿

#final_step_wrapper {
    display: none;
}

/* Demo Environment Alert */
.demo-alert {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    padding: 12px 20px;
    margin: 0;
    border: none;
    position: relative;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-bottom: 2px solid #d68910;
    justify-content:center;
    align-items:center
}

.demo-alert-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    vertical-align: text-top;
}

.demo-alert-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

    .demo-alert-close:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .demo-alert-close:focus {
        outline: none;
        background-color: rgba(255, 255, 255, 0.3);
    }

.main-header{
    height:120px
}

.hero-section{
    margin-top:120px
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .demo-alert {
        padding: 10px 40px 10px 15px;
        font-size: 13px;
    }

    .demo-alert-close {
        right: 10px;
        font-size: 16px;
    }
}

.payment_kartice: {
    height: 32px;
    margin-top: 24px;
}

.form-control {
    height: 40px;
    font-size: 18px;
}

.form_notice {
    border: 0;
    background-color: rgba(0,0,0,.3);
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-left: 30px;
    border-radius: 10px;
}

.trans_03_iino {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.hidden {
    display: none;
}

#main_article p {
    text-align: justify
}

.app-screenshot {
    max-height: 500px;
    object-fit: contain;
}

.store-button {
    min-width: 200px;
}

.download-section {
    background-color: #f8f9fa;
    padding: 20px
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }
}

/* App store styling */
.app-store-links {
    text-align: center;
    padding: 10px 0;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.app-store-button {
    display: inline-block;
    transition: transform 0.2s ease;
}

    .app-store-button:hover {
        transform: scale(1.05);
    }

/*    .app-store-button img {
        border-radius: 8px;
    }*/

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    .app-store-buttons {
        flex-direction: column;
    }

    .app-store-button {
        margin-bottom: 10px;
    }
}

.payment_kartice {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between cards */
    margin-top: 20px;
    margin-bottom: 10px;
}

.payment_card img {
    /*max-width: 85px;*/ /* Set a smaller width for the cards */
    height: auto;
    max-height: 40px;
    object-fit: contain; /* Ensure the image fits within the container */
    transition: transform 0.3s ease; /* Add a hover effect */
}

    .payment_card img:hover {
        transform: scale(1.1); /* Slight zoom effect on hover */
    }


.offices_list_wrap {
    margin-top: 35px;
}

.office_card_link {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color */
    display: block; /* Ensure the entire card is clickable */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.office_card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0); /* Subtle gradient background */
    border-radius: 12px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06); /* Soft shadow */
    overflow: hidden; /* Ensure content stays within the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    padding: 20px; /* Add padding for better spacing */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensure consistent height */
    margin-bottom: 20px
}

    .office_card:hover {
        transform: translateY(-5px); /* Slight lift on hover */
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
    }

    .office_card .card-title {
        font-size: 1.5rem; /* Larger title font */
        font-weight: 600; /* Semi-bold for emphasis */
        color: #333; /* Darker color for better readability */
        margin-bottom: 10px; /* Add spacing below the title */
    }

    .office_card .card-text {
        font-size: 1rem; /* Standard font size for text */
        color: #555; /* Subtle text color */
        margin-bottom: 15px; /* Add spacing below the text */
    }

    .office_card .card-meta {
        font-size: 0.875rem; /* Smaller font for meta information */
        color: #888; /* Muted color for meta text */
        margin-top: auto; /* Push meta info to the bottom */
        text-align: right; /* Align meta info to the right */
    }

    .office_card:hover .card-title {
        color: #591f80; /* Change title color on hover for interactivity */
    }

    .office_card:hover .card-text {
        color: #444; /* Slightly darker text color on hover */
    }

/* General styles for the details page */
.office_details_wrap {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 40px 0; /* Add vertical spacing */
}

.office_details_card {
    background: #ffffff; /* White card background */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 20px; /* Inner padding */
    margin-bottom: 20px; /* Spacing below the card */
}

.office_name {
    font-size: 2rem; /* Larger font for the office name */
    font-weight: 700; /* Bold font */
    color: #333; /* Dark text color */
    margin-bottom: 15px; /* Spacing below the title */
}

.office_address,
.office_contact,
.office_worktime,
.office_instructions {
    font-size: 1rem; /* Standard font size */
    color: #555; /* Subtle text color */
    margin-bottom: 10px; /* Spacing between items */
}

    .office_contact a {
        color: #007bff; /* Link color */
        text-decoration: none; /* Remove underline */
        transition: color 0.3s ease; /* Smooth color transition */
    }

        .office_contact a:hover {
            color: #0056b3; /* Darker link color on hover */
        }

.office_map {
    background: #ffffff; /* White background for the map container */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px; /* Inner padding */
}

    .office_map h4 {
        font-size: 1.25rem; /* Slightly larger font for the map title */
        font-weight: 600; /* Semi-bold font */
        color: #333; /* Dark text color */
        margin-bottom: 15px; /* Spacing below the title */
    }

.related_offices_wrap {
    background-color: #ffffff; /* White background for related offices */
    padding: 40px 0; /* Add vertical spacing */
    border-top: 1px solid #ddd; /* Subtle border to separate sections */
}

    .related_offices_wrap .section_heading {
        font-size: 1.75rem; /* Larger font for the section heading */
        font-weight: 700; /* Bold font */
        color: #333; /* Dark text color */
        margin-bottom: 30px; /* Spacing below the heading */
        text-align: center; /* Center align the heading */
    }

    .related_offices_wrap .office_card {
        background: linear-gradient(145deg, #ffffff, #f0f0f0); /* Subtle gradient */
        border-radius: 12px; /* Rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
        overflow: hidden; /* Ensure content stays within the card */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
        padding: 20px; /* Inner padding */
        height: 100%; /* Ensure consistent height */
    }

        .related_offices_wrap .office_card:hover {
            transform: translateY(-5px); /* Slight lift on hover */
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
        }

        .related_offices_wrap .office_card .card-title {
            font-size: 1.25rem; /* Slightly larger title font */
            font-weight: 600; /* Semi-bold font */
            color: #333; /* Dark text color */
            margin-bottom: 10px; /* Spacing below the title */
        }

        .related_offices_wrap .office_card .card-text {
            font-size: 1rem; /* Standard font size for text */
            color: #555; /* Subtle text color */
            margin-bottom: 15px; /* Add spacing below the text */
        }



.nav-breadcrumb {
    /*background: #f3ecf8;*/
    background: #fafafa;
    /*border-bottom: 1px solid #ddd;*/
    margin-bottom: 15px;
}

.active-booking{
    background:#fafafa;
}

/* Fix for select dropdown visibility */
/* Specific styling for country dropdown */
.country-select {
    width: 100%;
    height: 40px;
    font-size: 18px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #333;
    font-family: inherit;
    line-height: 1.5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1em 1em;
    padding-right: 2.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
}

    .country-select:focus {
        outline: none;
        border-color: #591f80;
        box-shadow: 0 0 0 2px rgba(89, 31, 128, 0.2);
    }

    .country-select:hover {
        border-color: #bbb;
    }

    .country-select option {
        padding: 8px 12px;
        background-color: white;
        color: #333;
    }