@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Prompt", sans-serif;
}

html {
    scroll-behavior: smooth;
}


body {
    /* font-family: 'Arial', sans-serif; */
    background: #070707;
    min-height: 100vh;
}

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

/* body img {
    height: auto;
    width: 100%;
    object-fit: cover;
} */

.contact-hero {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .contact-hero {
        min-height: 45vh;
    }
}

.contact-hero video {
    height: auto;
    width: 100%;
    object-fit: cover;
}

.floating-button {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Responsive size */
    width: clamp(50px, 6vw, 90px);
    height: clamp(50px, 6vw, 90px);
    padding: 1rem;
    background-color: #202020;

    animation: arrowBounce 2s infinite ease-in-out;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -10px);
    }
}


.floating-button img {
    height: auto;
    width: 100%;
    object-fit: cover;
}



.container {
    /* max-width: 1400px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0% 2%;
}

.container {
    position: relative;
    z-index: 2;
    background: #070707;
    /* Same as body, or adjust for contrast */
    /* margin-top: -100px; Creates overlay effect */
    padding-top: 100px;
    /* Compensate padding */
    /* padding-bottom: 120px; */
    /* Compensate padding */
}

@media screen and (max-width: 991px) {
    .container {
        padding-top: 0;
        padding-bottom: 0;
    }
}


.contact-info {
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: space-evenly;
}

.info-content {
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    padding: 10px;
    color: white;
}

.icon img {
    height: auto;
    width: 100%;
}


.location-icon {
    background: #03934d;
}

.email-icon {
    background: #03934d;
}

.phone-icon {
    background: #03934d;
}

.contact-text {
    flex: 1;
    color: #333;
}

.contact-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-text p {
    font-size: 16px;
    color: #000000;
    line-height: 1.4;
    /* width: 75%; */
}

.text-full p {
    /* width: 100%; */
}

.center-text p {
    /* text-align: center; */
}

.map-container {
    /* height: 300px; */
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

.contact-form-section {
    height: 100%;
    background-color: #ffffff24;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFFFFF;
    position: relative;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
    height: 90%;
    justify-content: space-between;
    padding: 2%;
}

@media screen and (min-width:1200px) {
    .contact-form-section form {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .submit-btn {
        position: absolute;
        left: 5%;
        bottom: 3%;
    }

    .contact-form-section form {
        height: 80%;
    }

    .contact-form-section {
        height: 70%;
    }


    .contact-form-section form {
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: #424242 #f1f1f1;
    }

    .submit-btn {
        position: absolute;
        left: 5%;
        bottom: 1.5%;
    }

    .contact-form-section form {
        height: 80%;
    }

    .contact-form-section {
        height: 70%;
    }

    .contact-info {

        height: 70%;
    }

}


.form-title {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
    letter-spacing: 1px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
    flex: 2;
}

.form-group.full-width textarea {
    height: 100%;
}

.form-input {
    width: 100%;
    padding: 18px 15px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.form-input::placeholder {
    color: #999;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: fit-content;
    background: #03934d;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* margin-bottom: 10px; */
}

.submit-btn:hover {
    background: #17ad65;
    transform: translateY(-2px);
    box-shadow: 0 6px 6px rgba(16, 185, 129, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-section {
        padding: 30px;
    }

    .form-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form-section {
        padding: 25px;
    }

    .info-content {
        padding: 25px;
    }

    .form-title {
        font-size: 24px;
        text-align: center;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .contact-form-section {
        padding: 20px;
    }

    .info-content {
        padding: 20px 6px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .contact-text h3 {
        font-size: 14px;
    }

    .contact-text p {
        font-size: 13px;
    }
}

/* Animation */
.contact-info,
.contact-form-section {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-section {
    animation-delay: 0.2s;
}

.spacer-div {
    height: 5vh;
    grid-column: 1 / -1;
}










/* ----------------------------nav animation------------------------- */

ul {
    padding: 0;
    display: flex;
}

li {
    list-style-type: none;
    padding: 10px 20px;
}

a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    color: white;
    position: relative;
}

ul li a:before {
    content: "";
    width: 0;
    height: 5px;
    background-color: #07f7f3;
    position: absolute;
    top: 120%;
    left: 0;
    transition: all 0.5s;
}

ul li a:after {
    content: "";
    width: 0;
    height: 5px;
    background-color: #35f756;
    position: absolute;
    top: 120%;
    right: 0;
    transition: all 0.5s;
}

ul li a:hover:before {
    width: 50%;
    transform: translateX(100%);
}

ul li a:hover:after {
    width: 50%;
    transform: translateX(-100%);
}