﻿/* Contacts Page Styles */

.contact-section {
    padding-top: clamp(80px, 15vh, 120px);
    padding-bottom: clamp(3rem, 10vh, 6rem);
    background-color: #fff;
}

@media (max-width: 768px) {
    .contact-section {
        padding-top: 80px;
        /* Slight adjustment for mobile header */
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
}

/* Left Column */
.contact-left {
    display: flex;
    flex-direction: column;
}



.contact-left h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: clamp(1rem, 3vh, 1.5rem);
    color: #000;
    line-height: 1.1;
}



.contact-left h1 span {

    color: var(--primary-blue);

}



.contact-intro-text {
    font-size: var(--fs-body);
    color: #555;
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 5vh, 2.5rem);
}



.contact-info-list {

    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-bottom: 40px;

}



.info-item {

    display: flex;

    align-items: center;

    gap: 15px;

    text-decoration: none;

    cursor: pointer;

    transition: transform 0.2s ease, opacity 0.2s ease;

}



.info-item:hover {

    transform: translateX(5px);

    opacity: 0.8;

}



.info-item:hover .info-icon {

    background-color: #f78f47;

}



.info-icon {

    width: 40px;

    height: 40px;

    background-color: var(--primary-blue);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    flex-shrink: 0;

    transition: background-color 0.3s ease;

}



.info-content h3 {

    font-size: 12px;

    color: #999;

    text-transform: capitalize;

    margin: 0;

}



.info-content p,

.info-content a {

    font-size: 15px;

    font-weight: 700;

    color: #333;

    text-decoration: none;

    margin: 0;

}



/* Status Pill */

.status-pill {

    display: inline-block;

    padding: 12px 25px;

    background-color: #F8FBFF;

    border: 1px solid #E1EDFF;

    border-radius: 12px;

    font-size: 14px;

    color: #444;

    margin-bottom: 40px;

}



.status-pill b {

    color: var(--primary-blue);

}



/* Image Rectangle */

.contact-image-box {

    width: 100%;

    flex-grow: 1;

    background-color: var(--primary-blue);

    border-radius: 35px;

    overflow: hidden;

}



.contact-image-box img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



/* Form Card */

.contact-form-card {

    background: #fff;

    border: 1px solid #EDEDED;

    border-radius: 40px;

    padding: 40px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);

    height: 100%;

}



.contact-form-card h2 {

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 30px;

}



.contact-form {

    display: grid;

    gap: 20px;

}



.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}



.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

}



.form-group label {

    font-size: 14px;

    font-weight: 700;

    color: #333;

}



.form-group label span {

    color: #FF0000;

}



.form-input,

.form-select,

.form-textarea {

    width: 100%;

    padding: 14px 20px;

    border: 1px solid #E5E5E5;

    border-radius: 12px;

    font-size: 14px;

    font-family: inherit;

    color: #333;

    background-color: #fff;

}



.form-select {

    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 20px center;

}



.form-textarea {

    min-height: 160px;

    resize: none;

}



/* Consent Checkbox */

.consent-wrapper {

    display: flex;

    gap: 15px;

    align-items: flex-start;

}



.consent-wrapper input[type="checkbox"] {

    width: 24px;

    height: 24px;

    border-radius: 8px;

    border: 1.5px solid var(--primary-blue);

    cursor: pointer;

    flex-shrink: 0;

}



.consent-wrapper label {

    font-size: 12px;

    color: #666;

    line-height: 1.5;

    font-weight: 500;

}



/* Blue Pill Button */

.btn-submit-black {

    background-color: var(--primary-blue);

    color: #fff;

    border: none;

    padding: 15px 40px;

    border-radius: 30px;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    width: fit-content;

}



.btn-submit-black:hover {

    background-color: var(--text-black);

    transform: translateY(-3px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

}



.contact-right {
    padding-top: 80px;
}

/* Responsive */

@media (max-width: 1024px) {

    .contact-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }

    .contact-right {
        padding-top: 0;
    }

}



@media (max-width: 768px) {

    .form-row {

        grid-template-columns: 1fr;

    }



    .contact-left h1 {

        font-size: 34px;

    }



    .contact-form-card {

        padding: 30px 20px;

    }

}