
.contact-modern-sec {
    background: #fdfdfd;
    padding: 120px 0;
}

.contact-pretitle {
    color: #FF5B2D;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-maintitle {
    font-size: 52px;
    font-weight: 900;
    color: #111;
}

/* Form Layout */
.form-flex-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Floating Label Logic */
.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 16px;
    color: #111;
    transition: all 0.3s ease;
}

.input-wrapper textarea {
    height: 162px;

    resize: none;
}

.input-wrapper label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.input-wrapper input:focus ~ label,
.input-wrapper input:not(:placeholder-shown) ~ label,
.input-wrapper textarea:focus ~ label,
.input-wrapper textarea:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 12px;
    color: #8f57ff;
    font-weight: 700;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8f57ff;
    transition: width 0.4s ease;
}

.input-wrapper input:focus ~ .input-line,
.input-wrapper textarea:focus ~ .input-line {
    width: 100%;
}

/* Button Style */
.form-footer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.wpcf7-submit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: linear-gradient(90deg, #6a4dff, #8f57ff);
    color: #fff;
    border: 0;
}

.wpcf7-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 91, 45, 0.3);
}

@media (max-width: 768px) {
    .form-flex-row { flex-direction: column; gap: 30px; }
    .contact-maintitle { font-size: 36px; }
}
.careers-creative-sec {
    background-color: #ffffff;
    padding: 120px 0;
    color: #111;
}

/* Header Styles */
.creative-subtitle {
    color: #FF5B2D;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 15px;
}

.creative-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.creative-lead-text {
    max-width: 350px;
    color: #666;
    font-size: 18px;
    border-left: 3px solid #FF5B2D;
    padding-left: 20px;
}

/* Jobs Layout */
.creative-jobs-grid {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 0; /* Քարտերը կլինեն իրար կպած՝ գծերով բաժանված */
}

.creative-job-card {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    align-items: center;
    padding: 50px 0;
    border-top: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
}

.creative-job-card:last-child {
    border-bottom: 1px solid #eee;
}

/* Hover Effect */
.creative-job-card:hover {
    padding-left: 30px;
    padding-right: 30px;
    background-color: #f9f9f9;
}

/* Elements Inside Card */
.card-num {
    font-size: 20px;
    font-weight: 300;
    color: #ccc;
    font-family: serif;
}

.card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
    color: #555;
}

.card-job-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    transition: color 0.3s;
}

.creative-job-card:hover .card-job-title {
    color: #FF5B2D;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-loc {
    color: #999;
    font-weight: 500;
}

.card-btn {
    font-weight: 700;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 2px solid #FF5B2D;
    padding-bottom: 2px;
}

.card-btn span {
    display: inline-block;
    transition: transform 0.3s;
}

.card-btn:hover span {
    transform: translateX(5px);
}

/* Custom Button */
.btn-outline-custom {
    display: inline-block;
    padding: 18px 40px;
    border: 2px solid #111;
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background: #111;
    color: #fff;
}
.creative-footer-btn{
    margin-top:30px
}


.modern-form input,
.modern-form textarea{
    outline: none;
    border: none;
    border-bottom: 2px solid #e0e0e0;
}









/* Responsive */
@media (max-width: 480px) {
    #contact-custom{
        padding-bottom: 0!important;
    }
    #careers-creative{
        padding-top: 20px!important;
    }
}
@media (max-width: 991px) {
    .creative-job-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
    }
    .creative-title { font-size: 40px; }
    .head-right { display: none; }
}
