.select2-container--bootstrap4 .select2-search--dropdown .select2-search__field:focus {
    border: none !important;
    box-shadow: none !important;
}

/* Стил за вътрешния input на select2 да изглежда като .form-control */
.select2-container--bootstrap4 .select2-search--dropdown .select2-search__field {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: none;
}

/* Ограничаване на височината и скрол за select2 dropdown */
.select2-container--bootstrap4 .select2-results__options {
    max-height: 220px !important;
    overflow-y: auto !important;
}

/* Select2 Bootstrap4 border fix */

.select2-container--bootstrap4 .select2-selection {
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem !important;
    min-height: 38px !important;
    background-color: #fff !important;
    font-size: 1rem !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: none !important;
}

.select2-container--bootstrap4 .select2-selection--single {
    height: 38px !important;
    display: flex;
    align-items: center;
    padding: 0 0.75rem !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    line-height: 1.5 !important;
    padding-left: 0 !important;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #80bdff !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25) !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    line-height: 1.5;
    padding-left: 0;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #80bdff !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

body {
    font-family: Verdana, Geneva, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
    color: #0c0c0c;
    background-color: #ffffff;
}

/* ===== Modern theme variables ===== */
:root {
    --color-primary: #179FA9; /* primary */
    --color-primary-dark: #138892; /* darker variant */
    --color-danger: #a50e0e; /* primary */
    --color-danger-dark: #a50505; /* darker variant */
    --color-secondary: #EFFAFA; /* secondary background */
    --color-accent: hsl(32 95% 60%);
    --color-text: #0f172a;
    --color-muted: #475569;
    --color-bg: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 6px 20px rgba(19, 136, 146, .18);
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    color: var(--color-text);
    letter-spacing: -0.02em;
}

p {
    color: var(--color-muted);
}

.layout_padding {
    padding: 75px 0;
}

.layout_padding2 {
    padding: 45px 0;
}

.layout_padding2-top {
    padding-top: 45px;
}

.layout_padding2-bottom {
    padding-bottom: 45px;
}

.layout_padding-top {
    padding-top: 75px;
}

.layout_padding-bottom {
    padding-bottom: 75px;
}

.custom_heading {
    color: #030404;
}

.custom_heading span {
    color: #21d7ff;
}

/*header section*/
.hero_area {
    height: 98vh;
    position: relative;
}

.hero_area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    background-color: #023b48;
}

.sub_page .hero_area {
    height: auto;
}

.hero_area.sub_pages {
    height: auto;
}

.header_section {
    background-color: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    padding-top: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-box-shadow: var(--shadow-sm);
    box-shadow: var(--shadow-sm);
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}

.header_section .nav_container {
    margin: 0 auto;
}

.header_section .quote_btn-container a {
    color: #434242;
    text-transform: uppercase;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
    padding: 12px 18px;
    color: #0f172a;
    text-align: center;
    text-transform: uppercase;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.custom_nav-container .navbar-nav .nav-link {
    position: relative;
}

.custom_nav-container .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: var(--color-primary);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform .25s ease;
    transition: transform .25s ease, -webkit-transform .25s ease;
}

.custom_nav-container .nav-link:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover,
a:focus {
    color: initial;
}

.btn,
.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-brand,
.navbar-brand:hover {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
    color: #fafcfd;
}

.custom_nav-container .nav_search-btn {
    background-image: url(../images/search-icon.png);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position-y: 7px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
}

.navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.navbar-brand img {
    width: 30px;
    margin-right: 5px;
}

.navbar-brand span {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
    margin-top: 5px;
    letter-spacing: .4px;
}

/* Align menu right, smaller font */
.custom_nav-container .navbar-collapse {
    justify-content: flex-end;
}

.custom_nav-container .navbar-nav {
    margin-left: auto;
    align-items: center;
}

.custom_nav-container .navbar-nav .nav-link {
    font-size: 0.9rem;
}

.quote_btn-container .btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.quote_btn-container .btn:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.custom_nav-container {
    z-index: 99999;
    padding: 6px 0;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
    background-image: url(../images/menu.png);
    background-size: 55px;
}

/*end header section*/
/* slider section */
/* Hero (homepage jumbotron override) */
.jumbotron {
    background-color: var(--color-secondary);
    border-radius: var(--radius);
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
}

.jumbotron .btn-primary {
    background-color: var(--color-danger);
    border-color: var(--color-danger-dark);
}

.btn-primary:hover {
    background-color: var(--color-danger-dark);
    border-color: var(--color-danger-dark);
}

.btn-outline-primary {
    color: var(--color-primary-dark);
    border-color: var(--color-primary);
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.slider_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_detail-box h1 {
    color: #ffffff;
    font-size: 52px;
}

.slider_detail-box h1 span {
    display: inline-block;
    color: #434242;
    font-weight: bold;
}

.slider_detail-box p {
    color: #f6f8f7;
    margin-top: 45px;
    margin-bottom: 40px;
}

.slider_detail-box .btn-box .btn-1 {
    display: inline-block;
    padding: 10px 45px;
    background-color: #023b48;
    border: 1px solid #023b48;
    color: #ffffff;
    margin-right: 10px;
}

.slider_detail-box .btn-box .btn-1:hover {
    background-color: transparent;
    color: #023b48;
}

.slider_detail-box .btn-box .btn-2 {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #023b48;
}

.slider_detail-box .btn-box .btn-2:hover {
    background-color: transparent;
    color: #ffffff;
}

.slider_img-box {
    margin-right: 5%;
}

.slider_img-box img {
    width: 100%;
}

.carousel-indicators {
    bottom: -15%;
}

.carousel-indicators li {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #010106;
}

.about_section {
    background-image: url(../images/about-bg.png);
    background-size: cover;
}

.about_section .row {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.about_section .img-box img {
    width: 100%;
}

.about_section .detail-box p {
    margin: 25px 0;
}

.about_section .detail-box a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #023b48;
    border: 1px solid #023b48;
    color: #ffffff;
}

.about_section .detail-box a:hover {
    background-color: transparent;
    color: #023b48;
}

.service_section .row .col-md-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.service_section .img_box {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    background-color: #18d3ff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service_section .img_box img {
    width: 45px;
}

.service_section .detail_box {
    margin-top: 25px;
}

.service_section .detail_box h6 {
    font-weight: bold;
}

.service_section a {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.service_section a:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    -webkit-transform: translateY(16px);
    transform: translateY(16px);
    -webkit-transition: opacity .6s ease, -webkit-transform .6s ease;
    transition: transform .6s ease, opacity .6s ease, -webkit-transform .6s ease;
}

.reveal--visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Cards */
.card {
    border: 0;
    border-radius: var(--radius);
    -webkit-box-shadow: var(--shadow-sm);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-transition: .2s;
    transition: .2s;
}

/* Services grid */
.services-grid .service-card {
    border: 1px solid rgba(23, 159, 169, .18);
    border-radius: 14px;
    background: #fff;
    padding: 24px;
    -webkit-box-shadow: 0 1px 0 rgba(16, 105, 112, .04);
    box-shadow: 0 1px 0 rgba(16, 105, 112, .04);
}

.services-grid .service-card:hover {
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
}

.services-grid .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: var(--color-secondary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 12px;
}

.services-grid .icon-circle img, .services-grid .icon-circle svg {
    width: 22px;
    height: 22px;
}

.services-grid h5 {
    margin: 0;
    font-weight: 700;
    color: var(--color-text);
}

.services-grid p {
    margin: 12px 0 0 60px;
    color: var(--color-muted);
}

@media (max-width: 575.98px) {
    .services-grid p {
        margin-left: 0;
    }
}

/* Section spacing helpers */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Back to top button */
#backToTop {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--color-primary);
    color: #fff;
    -webkit-box-shadow: var(--shadow-md);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    z-index: 1050;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Pricing */
.pricing-info {
    border: 1px solid rgba(23, 159, 169, .2);
    background: var(--color-secondary);
    border-radius: 12px;
    padding: 16px 18px;
    color: var(--color-muted);
}

.pricing-grid .pricing-card {
    border: 1px solid rgba(23, 159, 169, .18);
    border-radius: 12px;
    background: #fff;
    padding: 18px 0;
    -webkit-box-shadow: 0 1px 0 rgba(16, 105, 112, .04);
    box-shadow: 0 1px 0 rgba(16, 105, 112, .04);
}

.pricing-grid .pricing-card h6 {
    font-weight: 700;
    padding: 0 18px 6px;
    margin: 0;
}

.pricing-grid .pricing-sub {
    font-size: .8rem;
    color: var(--color-muted);
    padding: 0 18px 12px;
}

.pricing-grid .price-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 18px;
    border-top: 1px solid rgba(23, 159, 169, .12);
}

.pricing-grid .price-row:first-of-type {
    border-top: 0;
}

.pricing-grid .amount {
    color: #106970;
    font-weight: 600;
    text-align: right !important;
}

/* Contacts */
.contact-grid .info-card {
    border: 1px solid rgba(23, 159, 169, .18);
    border-radius: 12px;
    background: #fff;
    -webkit-box-shadow: 0 1px 0 rgba(16, 105, 112, .04);
    box-shadow: 0 1px 0 rgba(16, 105, 112, .04);
}

.contact-grid .bg-warning-soft {
    background: #fff7ed;
    border: 1px solid rgba(245, 158, 11, .3);
    border-radius: 12px;
}

.contact-grid .form-card {
    border: 1px solid rgba(23, 159, 169, .18);
    border-radius: 12px;
    background: #fff;
    -webkit-box-shadow: 0 1px 0 rgba(16, 105, 112, .04);
    box-shadow: 0 1px 0 rgba(16, 105, 112, .04);
}

.contact-grid .map-card {
    border: 1px solid rgba(23, 159, 169, .18);
    border-radius: 12px;
    background: var(--color-secondary);
}

.gallery-section {
    background-color: #0dc3ff;
}

.gallery-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.gallery-section .container h2 {
    color: #ffffff;
}

.gallery-section .img_box {
    margin: 15px 0;
}

.gallery-section .img_box img {
    width: 100%;
    height: 100%;
}

.gallery-section .img_box.box-1 {
    width: 28%;
}

.gallery-section .img_box.box-2 {
    width: 70%;
}

.gallery-section .img_box.box-3 {
    width: 32%;
}

.gallery-section .img_box.box-4 {
    width: 32%;
}

.gallery-section .img_box.box-5 {
    width: 32%;
}

.buy_section {
    text-align: center;
}

.buy_section p {
    margin: 25px 0;
}

.buy_section a {
    display: inline-block;
    padding: 12px 65px;
    background-color: #023b48;
    border: 1px solid #023b48;
    color: #ffffff;
}

.buy_section a:hover {
    background-color: transparent;
    color: #023b48;
}

.client_section .pl-100 {
    padding-left: 100px;
}

.client_section .client_container {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    border: 1px solid #606060;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0;
}

.client_section .client_container .img_box {
    width: 200px;
    margin-left: -100px;
}

.client_section .client_container .img_box img {
    min-width: 100%;
}

.client_section .client_container .detail_box {
    padding: 0 35px;
}

.client_section .carousel-indicators li {
    background-color: #0dc3ff;
}

.client_section .carousel-indicators .active {
    background-color: #8c8a8a;
}

.map_section {
    position: relative;
}

.map_section #map {
    position: absolute;
}

.map_section .form_container {
    position: relative;
    width: 50%;
    z-index: 9;
}

.map_section .form_container form {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 45px;
    margin: 75px 0;
}

.map_section .form_container input {
    border: none;
    outline: none;
    background-color: transparent;
    border-bottom: 1px solid #111111;
    padding-top: 35px;
    width: 100%;
}

.map_section .form_container input.message-box {
    padding-top: 55px;
}

.map_section .form_container button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #023b48;
    border: 1px solid #023b48;
    color: #ffffff;
    border-radius: 30px;
    width: 100%;
    margin-top: 35px;
}

.map_section .form_container button:hover {
    background-color: transparent;
    color: #023b48;
}

.info_section {
    background-color: #0dc3ff;
}

.info_items {
    width: 70%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.info_items .item {
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.info_items .item .img-box {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.info_items .item .detail-box {
    margin-top: 5px;
    color: #fff;
}

.info_items {
    position: relative;
}

.info_items a {
    position: relative;
}

.info_items .item .img-box.box-1 {
    background-image: url(../images/location-white.png);
}

.info_items .item .img-box.box-2 {
    background-image: url(../images/telephone-white.png);
}

.info_items .item .img-box.box-3 {
    background-image: url(../images/envelope-white.png);
}

/* footer section*/
.footer_section {
    background-color: #fbfdfd;
    padding: 20px;
}

.footer_section p {
    color: #292929;
    margin: 0;
    font-size: 0.9rem;
    color: hsl(210 15% 45%);
}

.footer_section li {
    color: hsl(210 15% 45%);
    font-size: 0.9rem;
}

.footer_section li svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-primary);
}

.footer_section a {
    color: hsl(210 15% 45%);
    font-size: 0.9rem;
}

.footer_section a:hover {
    color: var(--color-primary-dark);
}

/* end footer section*/
/*# sourceMappingURL=style.css.map */

.bg-primary {
    background-color: var(--color-primary) !important
}

.reserve-botton {
    background-color: var(--color-danger) !important;
    color: #fff !important;
    border-color: var(--color-danger) !important;
}

.reserve-botton:hover {
    background-color: var(--color-danger-dark) !important;
}

.btn {
    border-radius: 10px !important;
}

.btn-primary {
    background-color: var(--color-danger);
    border-color: var(--color-danger);
}

.btn-primary:hover {
    background-color: var(--color-danger-dark);
    border-color: var(--color-danger-dark);
}

.contact-list li {
    margin-top: 20px;
    margin-bottom: 20px;
    color: hsl(209, 18%, 52%);
    font-size: 0.9rem;
    line-height: 2rem;
}

.contact-list li a {
    color: hsl(210 15% 45%);
}

.contact-list li a:hover {
    color: var(--color-primary-dark);
}

.circle-icon {
    display: inline-block;
    width: 30px;
    height: 30px !important;
    border-radius: 50%;
    background-color: #E9F5F6;
    margin-right: 10px;
    margin-bottom: 10px;
}

.bg-accent-10 {
    background-color: #FEF5EB !important;
}


.circle-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-primary);
    text-align: center;
}

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

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

/* Leaflet map fix */
#map {
    width: 100% !important;
    height: 400px !important;
    min-height: 300px;
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

/* Form error styles */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.95em;
}

.wrapper {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(255, 255, 255, 0.30) 65%, rgba(255, 255, 255, 0.0) 100%), url(' ./../images/hero-vet.jpg');
    background-size: cover;
    background-position: center;
}

.navbar-brand img {
    width: 200px !important;
}