.excss-1 { margin-top: 20px; }
.excss-2 { }
.excss-3 { }
.excss-4 { }


html {
    height: 100%;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[role="main"] {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.navbar-fixed-top {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
}


#contact .row {
    display: flex;
    align-items: flex-start;
    margin: 0 !important;
}

#contact .container {
    padding: 0 15px !important;
}

#contact .col-md-8.col-sm-8 {
    display: flex;
    flex-direction: column;
}

#contact .section-title {
    margin-bottom: 50px !important;
}

#contact form {
    display: flex;
    flex-wrap: wrap;
}

#contact form .col-md-6,
#contact form .col-md-12 {
    margin-bottom: 15px;
}


#contact .col-md-4.col-sm-4 {
    padding: 0 !important;
    margin: 0 !important;
}


.google-map {
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    height: 100%;
    min-height: 370px;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .google-map {
        margin-top: 30px;
        height: 400px;
    }
}

.custom-navbar {
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.custom-navbar.top-nav-collapse {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-bottom: 3px solid #559d78 !important;
}

html, body {
    height: auto !important;
    min-height: 100% !important;
}

body {
    padding-top: 10px !important;
}

#contact {
    padding-bottom: 10vh !important;
}

.form-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #000;
}

.modal-body h2 {
    color: #27ae60;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 28px;
}

.modal-body p {
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
}

.btn-close-modal {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-close-modal:hover {
    background-color: #229954;
}

.btn-close-modal:active {
    transform: scale(0.98);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    #contact .row {
        flex-direction: column !important;
    }

    #contact .col-md-8.col-sm-8,
    #contact .col-md-4.col-sm-4 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    #contact form .col-md-6,
    #contact form .col-md-12,
    #contact form .col-md-4 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #submitBtn {
        width: 100% !important;
    }

    .google-map {
        margin-top: 30px !important;
        height: 300px !important;
    }
}

