﻿/* Contact Header */
.contact-header {
    text-align: center;
    margin: 20px 0;
}


.contact-heading-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #031114;
    color: rgb(86, 86, 86);
    font-size: 18px;
    font-weight: bold;
    border: 2px solid gray;
    border-radius: 50px;
    padding: 10px 30px;
    margin: 0 auto;
    text-align: center;
    transition: 0.3s ease-in-out;
    width: fit-content;
    margin-top: 12vh;
    margin-bottom: 1vh;
}


/* Contact Us Title */
.contact-us-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom:1vh;
}

.contact-us-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(to bottom right, #010d0f 60%, rgb(44, 44, 19) 80%);
    color: white;
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(255, 255, 0, 0.3);
    min-height: 400px;
    margin-bottom: 30vh;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    gap: 0px;
}
.contact-details {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    display: flex;
    flex-direction: column;
    line-height: 0.1
}
/* Separator Line */
.separator {
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    margin: 8px 0; 
    width: 100%;
}


.contact-details,
.contact-form {
    flex: 1;
    padding: 10px;
    color: rgb(255, 255, 255);
    text-align: left;
}

.contact-heading {
    font-size: 22px;
    color: yellow;
    margin-bottom: 5px;
}

/* Separator Line */
.separator {
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

/* Contact Info Text */
.contact-info,
.contact-value,
.contact-details p {
    margin: 3px 0;
    font-weight: bold;
    margin-top: 1vh;
    margin-bottom: 15px;
    color: gray;
}
.contact-details p {
    text-align: center;
}



.social-icons-contact {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}
.social-icons-contact img {
    filter: brightness(0) invert(1);
}


.social-icon {
    width: 25px;
    height: 25px;
}

/* Form Label */
.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: gray;
}


.form-control,
.form-control-inline {
    width: 100%;
    padding: 15px;
    margin: 2px 0 12px;
    border-radius: 6px;
    background-color: #0a0a0a;
    color: gray;
    font-size: 16px;
    outline: none;
}
.message-box {
    min-height: 200px;
    height: auto;
    resize: vertical; 
}


.form-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.input-group {
    flex: 1;
    margin: 10px;
}

.subscribe-section {
    margin: 8px 0;
}

.subscribe-section label {
    color: gray;
}

.subscribe-section input[type="checkbox"]:checked + label {
    color: yellow;
}

/* Send Message Button */
.send-message-btn {
    width: 100%;
    background-color: yellow;
    color: black;
    padding: 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease;
    text-align: center;
}

.send-message-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-us-container {
        width: 95%;
        padding: 20px;
    }

    .contact-section {
        flex-direction: column; 
        gap: 30px;
    }

    .form-row {
        flex-direction: column; 
        gap: 10px;
    }

    .contact-heading {
        text-align: center;
        font-size: 20px;
    }

    .contact-details p {
        font-size: 14px;
        text-align: center;
    }

    .social-icons-contact {
        justify-content: center;
    }

    .send-message-btn {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 1024px) {
    .contact-us-container {
        width: 90%;
        padding: 30px;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-details {
        text-align: left !important;
        width: 100%;
     
            align-items: flex-start !important;
        
        
    }
    
    

    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (min-width: 1200px) {
    .contact-us-container {
        max-width: 1100px;
        padding: 50px;
    }
}

