/* PlayWrong CSS for "Get In Touch" Section Replica */

.get-in-touch-section {
    padding: 24px 0;
    position: relative;
    background-color: #f7f9fc;
    overflow: hidden;
}

.get-in-touch-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.get-in-touch-inner {
    width: 65%;
    /* Matching --width: 65% from live site */
}

.get-in-touch-header {
    margin-bottom: 12px;
    text-align: center;
}

.get-in-touch-header h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 38px;
    font-weight: 700;
    color: #31305c;
}

/* Form Styles */
.git-form-wrapper {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    padding: 25px;
    margin: 0 auto;
}

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

.git-form-group {
    margin-bottom: 15px;
}

.git-form-group.full-width {
    grid-column: span 2;
}

.git-label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

.git-req {
    color: red;
}

.git-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
}

.git-control:focus {
    outline: none;
    border-color: #e34a25;
    /* Primary color */
}

textarea.git-control {
    min-height: 120px;
    resize: vertical;
}

.git-submit-btn {
    background-color: #e70505;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.git-submit-btn:hover {
    background-color: #e70505;
}

/* Decoration Images */
.git-decoration-1,
.git-decoration-2 {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.git-decoration-1 {
    right: 0;
    bottom: 0;
    max-width: 271px;
    /* Matching width from live site */
}

.git-decoration-2 {
    left: 0;
    top: 20%;
    max-width: 373px;
    /* Matching width from live site */
}

/* Responsive */
@media (max-width: 1024px) {
    .get-in-touch-section {
        padding: 40px 0;
    }

    .get-in-touch-inner {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .get-in-touch-section {
        padding: 30px 0;
    }

    .get-in-touch-inner {
        width: 100%;
    }

    .git-form {
        grid-template-columns: 1fr;
    }

    .git-form-group.full-width {
        grid-column: span 1;
    }

    .git-form-wrapper {
        padding: 40px 20px;
    }
}