
/* ============================== */
/* Contact Section Styling */
/* ============================== */

/* Contact Quote Section */
.contactquote-section {
    width: 100%;
    text-align: center;
    margin-bottom: 40px; /* Adjust space below */
}

/* Quote Container */
.contactquote-container {
    display: flex;
    justify-content: center;  /* Centers text */
    align-items: center;
    gap: 10px;  /* Adds spacing between words */
    flex-wrap: nowrap; /* Prevents wrapping */
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
}

/* Ensures text stays inline */
.contact-left,
.contact-middle,
.contact-right {
    white-space: nowrap; /* Prevents text from wrapping */
    display: inline-block; /* Ensures they remain on the same line */
}



.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #111;
    color: white;
    position: relative;
}


/* Contact Title */
.contact-title {
    text-align: center;
    margin-bottom: 30px;
}

.contact-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-title p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Container */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.15);
}

/* Left Section: Contact Info */
.contact-info {
    flex: 1;
    text-align: left;
    padding-right: 30px;
}

/* Left Section: Image & Contact Info */
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 40%;
    padding-right: 20px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 30px; /* More spacing */
}

.contact-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Right Section: Contact Form */
.contact-form-container {
    flex: 1;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 96%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.contact-form textarea {
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-btn {
    background: linear-gradient(45deg, #41474a, #252728);
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    width: 500px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.contact-btn:hover {
    background: linear-gradient(45deg, #6b7277, #55595c);
    transform: scale(1.05);
}

.contact-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-image {
    width: 150px; /* Adjust size as needed */
    height: 150px;
    object-fit: cover;
    border-radius: 50%; /* Circular Image */
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.2);
}

/* Right Section: Contact Form */
.contact-form-container {
    flex: 1;
}

/* XS Devices (max-width: 475px) */
@media (max-width: 475px) {
    .container {
        width: 100%;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 5%;
        text-align: left;
    }

    .contact-container {
        flex-direction: column;
        max-width: 95%;
        padding: 15px;
    }

    .contact-image-container {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .contact-image {
        width: 90px;
        height: 90px;
    }

    .contact-title h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .contact-title p {
        font-size: 0.85rem;
        max-width: 90%;
        margin: 0 auto;
    }

    .contact-info {
        text-align: left;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .contact-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .contact-form-container {
        width: 100%;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        font-size: 0.95rem;
        padding: 12px;
    }

    .contact-btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
}

/* SM Devices (max-width: 640px) */
@media (max-width: 640px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 5%;
        text-align: left;
    }

    .contact-container {
        flex-direction: column;
        max-width: 90%;
        padding: 20px;
    }

    .contact-image-container {
        margin-bottom: 15px;
    }

    .contact-image {
        width: 100px;
        height: 100px;
    }

    .contact-title h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .contact-title p {
        font-size: 0.9rem;
        max-width: 90%;
        margin: 0 auto;
    }

    .contact-info {
        text-align: left;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact-form-container {
        width: 100%;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        font-size: 1rem;
        padding: 12px;
    }

    .contact-btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
}


/* ✅ Media Query for 2560px Screens (4K) */
@media (min-width: 2560px) {
    /* ✅ Increase Section Spacing */
    .contact-section {
        padding: 100px 40px; /* More spacing for a balanced layout */
    }

    /* ✅ Scale Contact Title */
    .contact-title h2 {
        font-size: 4rem; /* Larger heading for emphasis */
        margin-bottom: 20px;
    }

    .contact-title p {
        font-size: 1.6rem; /* Enlarged text for readability */
        max-width: 80%;
        margin: 0 auto;
    }

    /* ✅ Scale Contact Quote */
    .contactquote-container {
        font-size: 2.8rem; /* Bigger text for impact */
    }

    /* ✅ Expand Contact Container */
    .contact-container {
        max-width: 1400px; /* Wider container */
        padding: 50px; /* More spacing inside */
        display: flex;
        gap: 60px; /* Space between contact info & form */
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2); /* Softer glow */
    }

    /* ✅ Increase Contact Info Section */
    .contact-info {
        flex: 1;
        padding-right: 60px;
    }

    .contact-info h3 {
        font-size: 2.5rem; /* Larger text */
        margin-bottom: 40px;
    }

    .contact-info p {
        font-size: 1.5rem; /* Enlarged paragraph text */
    }

    /* ✅ Scale Contact Form */
    .contact-form-container {
        flex: 1;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1.5rem; /* Bigger inputs */
        padding: 18px; /* Larger padding for better touch usability */
    }

    /* ✅ Scale Submit Button */
    .contact-btn {
        font-size: 1.6rem; /* Bigger button text */
        padding: 18px 20px;
        width: 600px; /* Wider button */
    }

    /* ✅ Increase Contact Image */
    .contact-image {
        width: 220px;
        height: 220px;
    }
}
