/* General Contact Page Styling */
.contact-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 5vw;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.contact-section {
    text-align: center;
    margin-bottom: 5vw;
    padding: 5vw;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h1 {
    font-size: 6vw;
    color: #333;
    margin-bottom: 3vw;
}

.contact-section p {
    font-size: 4vw;
    color: #666;
    line-height: 1.5;
    margin: 1.5vw 0;
}

.contact-section a {
    font-size: 4vw;
    color: #007BFF;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Map Styling */
.map-container {
    text-align: center;
    margin-top: 4vw;
    padding: 5vw;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover; /* Ensure proper scaling */
}

.map-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Social Media Buttons */
.socials-container {
    display: flex;
    justify-content: center;
    gap: 5vw;
    margin-top: 4vw;
}

.social {
    width: 12vw;
    height: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social svg {
    width: 7vw;
    height: 7vw;
    fill: #333;
}

.social:hover {
    background: linear-gradient(45deg, #f0f0f0, #f5f5f5);
}

.twitter:hover {
    background: linear-gradient(45deg, #66757f, #00acee, #36daff, #dbedff);
}
.facebook:hover {
    background: linear-gradient(45deg, #134ac0, #316ff6, #78a3ff);
}
.google-plus:hover {
    background: linear-gradient(45deg, #872419, #db4a39, #ff7061);
}

.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Image Gallery Section */
.image-gallery {
    margin-top: 5vw;
    padding: 5vw;
    background-color: #f7f7f7;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-gallery h2 {
    text-align: center;
    font-size: 5vw;
    margin-bottom: 3vw;
    color: #444;
}

.image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4vw;
}

.image-container img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 5vw;
    }

    .contact-section p {
        font-size: 3.5vw;
    }

    .map-container img {
        max-width: 90%; /* Dynamically adjust width */
    }

    .social {
        width: 10vw;
        height: 10vw;
    }

    .social svg {
        width: 6vw;
        height: 6vw;
    }

    .image-gallery h2 {
        font-size: 4vw;
    }

    .image-container img {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .contact-section h1 {
        font-size: 4.5vw;
    }

    .contact-section p {
        font-size: 3.2vw;
    }

    .map-container img {
        max-width: 100%; /* Ensure full screen fit */
    }

    .social {
        width: 9vw;
        height: 9vw;
    }

    .social svg {
        width: 5.5vw;
        height: 5.5vw;
    }

    .image-gallery h2 {
        font-size: 3.8vw;
    }

    .image-container img {
        border-radius: 8px;
    }
}
