/* Класическа медицинска тема */
:root {
    --color-primary: #a20000;
   
    --color-secondary: #2c82c9;
    --color-secondary-hover: #1a5ea2;
    --color-bg: #f7f9fc;
    --color-text: #1a1a1a;
    --color-text-body: #2b2b2b;
    --color-muted: #d0dbe5;
    --color-dark: #003366;
    --color-white: #ffffff;
    --color-footer-divider: #2a4566;
    --color-footer-text: #cccccc;
    --max-width: 1280px;
    --white: #ffffff;
    --bg-gray: #f0f0f0;
    --text-dark: #1a1a1a;
    --primary-red: #a20000;
    --dark-blue: #01305f;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-body);
    font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text);
    font-weight: 600;
}

h1 { font-size: 1.8rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

/* Горна лента */
.top-bar {
    background-color: var(--color-dark);
    padding: 6px 0;
}

.contact-info a {
    color: var(--color-white);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--color-secondary);
}

.emergency {
    color: var(--color-primary) !important;
    font-weight: 600;
}

.slider-content {
    min-height: 450px;
}

.slider-overlay {
    align-items: flex-start;
    padding-top: 2.5rem;
}

.slider-overlay h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
}

.hero-text {
    max-width: 550px;
}

.hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
}

.hero-buttons .btn {
    width: 100%;
    min-width: auto;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.quick-info-box {
    margin-top: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
}

.quick-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.info-items {
    gap: 0.4rem;
}

.info-item {
    padding: 0.3rem 0;
}

/* Услуги */
.service-box {
    background: var(--color-white);
    border: 1px solid var(--color-muted);
    border-radius: 6px;
    transition: all 0.3s ease;
    padding: 1.5rem;
    height: 100%;
}

.service-box:hover,
.service-box:focus-within {
    transform: none !important;
}

.service-box .btn-outline-primary {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.service-box .btn-outline-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-1px);
}

.service-box p {
    color: var(--color-text-body);
    margin-bottom: 0;
    font-size: 0.85rem;
}

.icon-circle {
    background: var(--color-bg);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.icon-circle i {
    color: var(--color-dark);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-box:hover .icon-circle {
    background: var(--color-secondary);
}

.service-box:hover .icon-circle i {
    color: var(--color-white);
}

.service-box h3 {
    color: var(--color-text);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Клиники */
.department-card {
    padding: 0;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.department-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.department-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    line-height: 0;
    margin: 0;
    padding: 0;
    position: relative;
}

.department-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.department-card:hover .card-image img {
    transform: scale(1.05);
}

.department-card i {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.8;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.department-card .card-content {
    padding: 1rem;
    text-align: center;
}

.department-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.department-card h4 a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--dark-blue);
}

.department-card h4 a:hover {
    color: var(--color-primary);
}

/* Бутони */
.hero-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.hero-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    min-width: 150px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}



.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-size: 0.875rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-footer-divider);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--color-footer-text);
}

.contact-list a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--color-secondary);
}

.map-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.map-button:hover {
    background-color: var(--color-secondary-hover);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--color-footer-text);
    font-size: 0.75rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-bottom-links a {
    color: var(--color-footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-white);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
    
    .footer-bottom-links {
        margin-top: 0;
    }
}

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    background: var(--color-white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-muted);
    width: auto;
    min-width: 160px;
}

.theme-btn {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid var(--color-muted);
    color: var(--color-dark);
    background: var(--color-white);
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.95rem;
}

.theme-btn:not(:last-child) {
    margin-bottom: 8px;
}

.theme-btn:hover,
.theme-btn.active {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
    transform: translateY(-1px);
}

.theme-btn i {
    margin-right: 8px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-links {
        text-align: left;
        margin-left: 1rem;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-info-footer {
        justify-content: center;
    }
}

/* Информационни карти */
.info-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.info-card h4 {
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
}

.info-card ul {
    margin: 0;
    padding: 0;
}

.info-card ul li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    list-style: none;
}

.info-card ul li:last-child {
    margin-bottom: 0;
}

.info-card ul li a {
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-card ul li a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

/* Новини и събития */
.news-grid {
    display: grid;
    gap: 1.5rem;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.news-date {
    text-align: center;
    min-width: 80px;
}

.news-date .day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.news-date .month {
    color: var(--color-text);
    font-size: 0.9rem;
}

.news-content h4 {
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.news-content p {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Полезни връзки */
.useful-links {
    display: grid;
    gap: 1rem;
}

.useful-link {
    background: #fff;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.useful-link:hover {
    transform: translateX(5px);
    color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.useful-link i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* Статистика */
.statistics {
    background: linear-gradient(135deg, var(--color-bg) 0%, #f8f9fa 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03),
                0 -5px 15px rgba(0, 0, 0, 0.03);
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,0,0,0.02)"/></svg>') repeat;
    opacity: 0.7;
}

.stat-item {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.animate h3 {
    animation: fadeInUp 0.6s forwards;
}

.stat-item p {
    color: var(--color-text);
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

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

@media (max-width: 768px) {
    .stat-item::after {
        display: none;
    }
    
    .stat-item {
        margin-bottom: 2rem;
    }
    
    .stat-item:last-child {
        margin-bottom: 0;
    }
}

/* Обяви */
.announcements {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(240,242,245,0.5) 100%);
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.announcements .section-header {
    position: relative;
    margin-bottom: 3rem !important;
}

.section-title {
    position: relative;
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    text-align: center;
    text-transform: none;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.3;
}

/* За заглавия, които са ляво подравнени */
.text-start .section-title,
.section-title.text-start {
    text-align: left;
    font-size: 1.75rem;
}

.text-start .section-title::before,
.section-title.text-start::before {
    left: 0;
    transform: none;
}

.text-start .section-title::after,
.section-title.text-start::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 700px;
    margin: -1.5rem auto 2rem;
    text-align: center;
}

/* За подзаглавия, които са ляво подравнени */
.text-start .section-subtitle,
.section-subtitle.text-start {
    text-align: left;
    margin-left: 0;
}


.announcement-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.announcement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.announcement-card .card-header {
    background: #fff;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.announcement-card .card-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.announcement-card .card-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
}

.announcement-list {
    padding: 1.5rem;
    flex: 1 1 auto;
}

.announcement-item {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.announcement-item .date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.announcement-item .date i {
    font-size: 0.9rem;
}

.announcement-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.announcement-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.announcement-item .read-more {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.announcement-item .read-more:hover {
    gap: 0.75rem;
    color: var(--primary-color-dark);
}

.announcement-item .read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.announcement-item .read-more:hover i {
    transform: translateX(3px);
}

.announcement-card .card-footer {
    background: rgba(240,242,245,0.5);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: auto;
}

.announcement-card .btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.announcement-card .btn-outline-primary i {
    font-size: 0.9rem;
}

.news-section {
    position: relative;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.news-header .section-title {
    margin-bottom: 0;
}

.news-header .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--color-primary);
    background: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-header .btn-view-all i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.news-header .btn-view-all:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.news-header .btn-view-all:hover i {
    transform: translateX(3px);
}

.btn-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--color-dark);
    background: transparent;
    border: 2px solid var(--color-dark);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
    margin-top: 1rem;
}

.btn-category i {
    font-size: inherit !important;
    color: currentColor !important;
    transition: transform 0.3s ease;
    order: 2;
}

.btn-category:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-category:hover i {
    transform: translateX(3px);
}

/* Премахваме всички дублиращи се стилове за икони */
/* Общи стилове за икони в бутони */
.btn i {
    font-size: inherit;
    color: currentColor;
}

/* Стилове за икони в карти */
.card-header i,
.card-footer i,
.announcement-item i {
    color: currentColor;
}

/* Стилове за икони в навигация */


/* Стилове за икони в footer */
.footer-links i,
.contact-list i {
    color: currentColor;
}

.btn-category i {
    font-size: 1.2rem!important;
    color: var(--color-dark);
}

.w-100 {
    width: 100%;
}

@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .news-header .btn-view-all {
        width: 100%;
        justify-content: center;
    }
}

/* Работно време стилове */
.quick-info-box {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.quick-info-box h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item .value {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
}

.info-item .info-link {
    color: var(--text-dark);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.info-item .info-link:hover {
    opacity: 1;
    color: var(--primary-red);
}

.quick-info-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0rem;
    padding-top: 1rem;
   
}

.quick-info-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 6px;
    background: rgba(0, 51, 102, 0.05);
    transition: all 0.3s ease;
}

.quick-info-links a:hover {
    background: rgba(0, 51, 102, 0.1);
    color: var(--primary-red);
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .quick-info-box {
        background: var(--white);
        margin-top: 2rem;
        padding: 1.75rem;
    }

    .quick-info-box h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .info-items {
        gap: 0.5rem;
    }

    .info-item {
        padding: 0.4rem 0;
    }
}

@media (max-width: 768px) {
    .quick-info-box {
        margin: 2rem 0;
        padding: 1.5rem;
        background: var(--color-light);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .quick-info-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: var(--color-dark);
    }

    .info-item .label {
        font-size: 0.95rem;
        color: var(--color-dark);
    }

    .info-item .value {
        font-size: 1rem;
        color: var(--color-dark);
    }

    .quick-info-links {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .quick-info-links a {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .quick-info-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }

    .quick-info-box h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .info-item {
        padding: 0.35rem 0;
    }

    .info-item .label {
        font-size: 0.9rem;
    }

    .info-item .value {
        font-size: 0.95rem;
    }

    .quick-info-links a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1000px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
        margin: 0 !important;
    }

    .hero-text {
        max-width: 600px;
    }
}

.main-slider {
    position: relative;
    overflow: visible;
}

.slider-content {
    position: relative;
    height: auto;
    min-height: 500px;
}



.slider-overlay {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    background: linear-gradient(
        rgba(0, 51, 102, 0.7),
        rgba(0, 51, 102, 0.6) 40%,
        rgba(0, 51, 102, 0.7)
    );
}

@media (max-width: 992px) {
    .slider-content {
        height: auto;
        min-height: auto;
    }

    .hero-bg{
        position: absolute;
        height: 100%;
    }

    .slider-overlay {
        padding: 3rem 0;
        min-height: 500px;
        display: flex;
        align-items: flex-start;
    }

    .quick-info-box {
        margin: 2rem 0;
        background: var(--white);
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .slider-content {
        overflow: visible;
    }

    .hero-bg{
        position: relative;
        height: 300px;
    }

   

    .quick-info-box {
        margin: 2rem 0;
        padding: 1.5rem;
    }
}

.dropdown-submenu > a:after {
    content: none !important;
}

.hero-slagane {
    color: #ffffff!important;
    font-size: 1.8rem !important;
    font-family: var(--font-accent, "Montserrat", Arial, Helvetica, sans-serif) !important;
}

.text-white-shadow {
    text-shadow: 6px 2px 8px rgba(254, 254, 254, 1);
}


@media (max-width: 991.98px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 0.5rem;
    }
    
    .text-start .section-title,
    .section-title.text-start {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .slider-overlay h1 {       
        font-size: 1.5rem !important;      
    }

    .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .hero-slagane {
        font-size: 1.4rem !important;
    }
}



