﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Fixed Fullscreen Background */
.image-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Main Contact Container */
.contact-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1;
}

/* Contact Content Box */
.contact-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-in-out;
}

/* Header and Info Text */
.contact-title {
    font-size: 2.5rem;
    color: #005A9C;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
}

.contact-info {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #333;
}

    .contact-info a {
        color: #005A9C;
        text-decoration: none;
    }

        .contact-info a:hover {
            text-decoration: underline;
        }

/* Google Map */
.map-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .map-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-slide-up {
    animation: fadeInUp 1.2s ease-out;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .contact-content {
        padding: 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .map-wrapper {
        height: 250px;
    }
}
