.contact-detail p {
    margin: 0;
    color: #666;
}

.contact-detail a {
    display: inline-block;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.contact-detail a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Map Section */
.map-section {
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
}

.map-container:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

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

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

.footer h3 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer a {
    color: var(--light-gray);
    transition: var(--transition-smooth);
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-nav ul li {
    margin-bottom: 0.7rem;
    transition: var(--transition-smooth);
}

.footer-nav ul li:hover {
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

@media (min-width: 576px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.footer-bottom p {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (min-width: 576px) {
    .footer-bottom p {
        margin-bottom: 0;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Custom Scrollbar - WebKit */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 6px;
    border: 2px solid var(--secondary-color);
    transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-color);
}

/* Custom Scrollbar - Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-color);
}

/* IE/Edge Scrollbar */
body {
    -ms-overflow-style: auto;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0; 
    left: 0; 
    right: 0;
    background: var(--dark-gray);
    color: var(--white);
    padding: 1.2rem;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--accent-color);
}

.cookie-banner p { 
    margin: 0; 
    flex: 1; 
    padding-right: 1rem;
}

.cookie-banner .btn {
    margin-right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-banner a {
    color: var(--light-gray);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-banner a:hover {
    color: var(--white);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    animation: spin 1s infinite ease-in-out;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Font-Awesome Integration */
.fa-icon {
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 99;
}

.back-to-top.active {
    opacity: 1;
    pointer-events: auto;
    bottom: 30px;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--white);
    max-width: 600px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--light-gray);
    text-align: right;
}

/* Responsive images */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Card styles */
.card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background-color: rgba(0,0,0,0.02);
    border-top: 1px solid var(--light-gray);
}

.lager-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    z-index: 1002 !important; 
    box-shadow: 0 3px 12px rgba(231,76,60,0.4);
    animation: pulse 2s infinite, slideDown 0.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.lager-banner.hidden {
    transform: translateY(-100%);
}

.lager-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.lager-banner-icon {
    font-size: 20px;
    animation: bounce 1.5s infinite;
}

.lager-banner-text {
    font-size: 16px;
    letter-spacing: 0.5px;
}

.lager-banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    opacity: 0.8;
    transition: all 0.3s ease;
    margin-left: 10px;
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lager-banner-close:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 3px 12px rgba(231,76,60,0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 5px 20px rgba(231,76,60,0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 3px 12px rgba(231,76,60,0.4);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

body.lager-banner-active {
    padding-top: 60px;
}

.header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky !important;
    top: 0 !important;
    z-index: 1001 !important;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 0 !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
        z-index: 10001 !important; 
    }
    
    .modal {
        max-width: 95%;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        margin: auto;
    }
    
    .modal-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .modal-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(0,0,0,0.1);
    }
    
    .modal-body {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cookie-options {
        margin: 1rem 0;
    }
    
    .cookie-option {
        margin-bottom: 1rem;
        padding: 0.75rem;
        background-color: #f8f9fa;
        border-radius: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-option input {
        margin-right: 0;
        margin-bottom: 0.5rem;
        transform: scale(1.3);
    }
    
    .cookie-option label {
        margin-left: 0;
    }
    
    .cookie-option label strong {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .cookie-option label p {
        font-size: 0.85rem;
        margin: 0;
        color: #666;
    }
    
    .modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .modal-footer button {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .cookie-info-text {
        font-size: 0.8rem;
        text-align: left;
        margin-top: 1rem;
    }
    
    .lager-banner {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1002 !important;
        box-sizing: border-box;
    }
    
    .lager-banner-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        flex: 1;
        text-align: center;
    }
    
    .lager-banner-text {
        font-size: 0.8rem;
        line-height: 1.2;
        flex: 1;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .lager-banner-icon {
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .lager-banner-close {
        position: absolute;
        top: 50%;
        right: 0.5rem;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        padding: 0;
        margin: 0;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    body.lager-banner-active {
        padding-top: 50px;
    }
    
    .header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1001 !important;
        margin-top: 0 !important;
        width: 100%;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .modal {
        max-width: 98%;
        width: 98%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 0.75rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .cookie-option {
        padding: 0.5rem;
    }
    
    .cookie-option label strong {
        font-size: 0.9rem;
    }
    
    .cookie-option label p {
        font-size: 0.8rem;
    }
    
    .modal-footer {
        padding: 0.75rem;
    }
    
    .modal-footer button {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .lager-banner {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .lager-banner-text {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .lager-banner-icon {
        font-size: 0.9rem;
    }
    
    .lager-banner-close {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        right: 0.4rem;
    }
    
    body.lager-banner-active {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        z-index: 1003 !important; 
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--text-color);
        z-index: 1004;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(0,0,0,0.05);
    }
    
    .menu-toggle {
        z-index: 1002;
        position: relative;
    }
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal-overlay.active {
    z-index: 10001 !important;
}

.lager-banner,
.header,
.modal-overlay,
.nav-menu {
    transition: all 0.3s ease;
}

.modal-close:focus,
.lager-banner-close:focus,
.menu-close:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

body {
    overflow-x: hidden;
}

.lager-banner,
.header,
.modal {
    max-width: 100vw;
    overflow-x: hidden;
}