#footer-container{
    background-image: url('/images/footer_page.png');
    background-size: cover;
    background-position: center;
}
.footer {
    /* background-color: #0e3b43; */
    /* background-image: url('/images/footer_page.png'); */
    /* background-repeat: no-repeat; */
    padding: 50px 0;
    display: flex;
    color:  var(--light-beige);
    /* F0EFE7 */
}

.footer-contacts {
    flex: 1;
    padding-left:60px;
}

.footer-contacts h3 {
    font-size: 24px;
    /* margin-bottom: 30px; */
}

.location {
    /* margin-bottom: 40px; */
}

.location h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0da2a9;
    position: relative;
    padding-left: 20px;
}

.location h4:before {
    content: '►';
    color: #0da2a9;
    position: absolute;
    left: 0;
}

.location p {
    margin-bottom: 5px;
}

.logo_image{
    height: 40px;
}

.location .map {
    width: 150px;
    height: 120px;
    background-color: #ccc;
    margin: 15px 0;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 10%;
    margin-bottom: 5%;
}

.location .map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    align-items: center;
}

.footer-form {
    flex: 1;
    padding: 0 50px;
    margin-top: 3%;
    margin-left: -13%;
    row-gap: 5px !important;
   
}

.footer-form h2 {
    font-size: 36px;
    margin-bottom: 10px;
  
}

.footer-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-style: italic;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: white;
    color: #0e3b43;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #0e3b43;
}

.footer-form textarea {
    height: 150px;
    resize: vertical;
}

.social-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    text-decoration: none;
}
.social-icon:hover {
    background-color: #0da2a9;
}

.social-icon i {
    color: #0e3b43;
    font-size: 20px;
    text-decoration: none;
} 


.logo_image {
    height: 80px;
}

/* Map thumbnail styling */
.map-thumbnail {
    cursor: pointer;
    transition: transform 0.3s;
    /* width: 150% !important;
    height: 70% !important; */
}

.map-thumbnail:hover {
    transform: scale(1.05);
}

/* Map popup styling */
.map-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.map-popup-content {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #203c41;
    transition: color 0.3s;
}

.close-popup:hover {
    color: #0da2a9;
}

.large-map {
    width: 100%;
    height: 450px;
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
}

.large-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright {
    text-align: center;
    padding: 15px;
    background-color: white;
    color: #203c41;
    font-size: 14px;
}


.floating-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-icon:hover {
    transform: scale(1.1);
}

.contact-icon i {
    color: #203c41;
    font-size: 20px;
}

@media (max-width: 992px) {
    header {
        flex-direction: column;
        padding: 20px;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .hero {
        flex-direction: column;
        height: auto;
    }
    
    .hero-text, .hero-image {
        width: 100%;
        height: 300px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .experience {
        margin-bottom: 30px;
    }
    
    .about-text {
        margin-left: 0;
    }
    
    .service-content {
        flex-direction: column;
    }
    
    .service-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-form-section {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
    
    .footer {
        flex-direction: column;
    }
    
    .footer-contacts,
    .footer-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    nav ul li {
        margin: 5px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .tagline h2 {
        font-size: 28px;
    }
    
    .form-container h2 {
        font-size: 32px;
    }
    
    .form-container h3 {
        font-size: 20px;
    }
    
    .footer-form h2 {
        font-size: 28px;
    }
    
    .footer-form h3 {
        font-size: 18px;
    }
}