/* CONTACT FORM BOX */
/* FORM CARD */
.contact-form {
    background: #fff;
    padding: 18px 25px;
    border-radius: 15px;
    width: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.contact-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    resize: none;
    height: 38px;
}

.contact-form input[type="file"] {
    padding: 6px 10px;
    
    cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #001F3F;
    box-shadow: 0 0 0 3px rgba(28, 43, 74, 0.1);
    background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    font-weight: 400;
}

.contact-form .form-group {
    margin-bottom: 8px;
}

.contact-form label {
    display: block;
    
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #001F3F;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 5px;
}

.contact-form button:hover {
    background: #001F3F;
}
.contact-form-box {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    transition: border-color 0.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: #001f3f;
    box-shadow: 0 0 0 3px rgba(13, 43, 76, 0.1);
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #999;
}

.contact-form-box textarea {
    resize: none;
    min-height: auto;
    height: 40px;
    line-height: 1.5;
}

/* PHONE GROUP */
.contact-form-box .phone-group {
    display: flex;
    gap: 0;
}

.contact-form-box .phone-group span {
    background: #e8e8e8;
    border: 1px solid #e0e0e0;
    border-radius: 6px 0 0 6px;
    padding: 10px 12px;
    font-weight: 600;
    color: #333;
    
    min-width: 40px;
    display: flex;
    align-items: center;
}

.contact-form-box .phone-group input {
    border-radius: 0 6px 6px 0;
    border-left: none;
    flex: 1;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    padding: 11px;
    background: #b0b0b0;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    
    margin-top: 8px;
}

.btn-submit:hover {
    background: #9a9a9a;
}


.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: #001f3f;
    box-shadow: 0 0 0 3px rgba(13, 43, 76, 0.1);
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
    color: #999;
}

.contact-form-box textarea {
    resize: none;
    min-height: auto;
    height: 40px;
    line-height: 1.5;
}

/* PHONE GROUP */
.contact-form-box .phone-group {
    display: flex;
    gap: 0;
}

.contact-form-box .phone-group span {
    background: #e8e8e8;
    border: 1px solid #e0e0e0;
    border-radius: 6px 0 0 6px;
    padding: 10px 12px;
    font-weight: 600;
    color: #333;
    
    min-width: 40px;
    display: flex;
    align-items: center;
}

.contact-form-box .phone-group input {
    border-radius: 0 6px 6px 0;
    border-left: none;
    flex: 1;
}
