/* ============================================= 
   CONTACT SECTION DESKTOP + MOBILE STYLES
   ============================================= */
.contact {
    background: #f9fafb;
    padding: 80px 0;
}

/* Desktop Grid Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    /* NO background here - transparent */
}

/* Text block - centered across full width */
.contact-text {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

.contact-text h2 {
    margin-bottom: 15px;
}

.contact-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 0;
}

/* Form block - left column, aligned with contacts */
.contact-form-wrapper {
    grid-column: 1;
    /* NO background or padding here */
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contacts + Address sidebar - right column, aligned with form */
.contact-sidebar {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.contact-icon {
    font-size: 24px;
}

.contact-icon-img {
    width: 24px;
    height: 24px;
}

.contact-phone-text,
.contact-item span {
    color: #333;
    font-weight: 500;
}

/* Address Block */
.contact-address {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #F97316;
}

.contact-address p {
    margin: 5px 0;
    color: #555;
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #F97316;
}

.form-checkbox {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    font-size: 14px;
    color: #666;
}

.checkbox-text a {
    color: #F97316;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

/* ============================================= 
   MOBILE LAYOUT - Vertical Stack
   ============================================= */
@media (max-width: 767px) {
    .contact {
        padding: 40px 0;
    }

    .contact-wrapper {
        display: block;
    }

    .contact-text {
        margin-bottom: 25px;
        text-align: center;
    }

    .contact-text h2 {
        font-size: 28px;
    }

    .contact-text p {
        font-size: 14px;
    }

    .contact-form-wrapper {
        margin-bottom: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-form .btn-full {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .contact-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}