/* Contact Us Mobile Styles - First Container Only */
.bg-gradient {
    top: -108px;
    transform: translateX(-50%) rotate(0deg);
    height: 1513px;

}
/* Main Contact Container - Mobile */
.contact-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 16px 24px 16px;
    z-index: 1;
}

.contact-wrapper {
    width: 288px;
    height: 920px;
    position: relative;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 19px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
}

.contact-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    justify-content: flex-end;
}


/* Form Section - Mobile */
.contact-form-section {
    flex: 0 0 489px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.form-wrapper {
    width: 256px;
    height: 100%;
    padding: 0;
}

.form-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Form Heading - Mobile */
.form-heading {
    width: 100%;
    height: 76px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-title {
    font-family: 'Peyda', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
    direction: rtl;
    text-align: right;
    width: 100%;
    height: 34px;
}

.form-subtitle {
    font-family: 'Peyda', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    direction: rtl;
    text-align: right;
    width: 100%;
    height: 34px;
}


/* Contact Form Container - Mobile */
.contact-form-container {
    width: 100%;
    height: 397px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Contact Form - Mobile */
.contact-form {
    width: 100%;
    height: 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Form Names Row - Mobile (Stacked) */
.form-names {
    width: 100%;
    height: 78px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-field {
    position: relative;
    height: 32px;
}

.first-name {
    width: 100%;
    height: 32px;
}

.last-name {
    width: 100%;
    height: 32px;
}

.email-field {
    width: 100%;
    height: 32px;
}

.phone-field {
    width: 100%;
    height: 32px;
}

.message-field {
    width: 100%;
    height: 109px;
}

/* Form Inputs - Mobile */
.form-field input,
.form-field textarea {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: 'Peyda', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    direction: rtl;
    text-align: right;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Peyda', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-field textarea {
    resize: vertical;
    min-height: 109px;
    padding-top: 8px;
}

/* Submit Button - Mobile */
.submit-button {
    width: 100%;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Peyda', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    direction: rtl;
    position: relative;
    margin-top: 16px;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: linear-gradient(135deg, #2d523f 0%, #1f3529 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.submit-button:active {
    transform: translateY(0);
}

.arrow-icon {
    display: none;
}

/* Social Links - Mobile */
.social-links {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 0;
    margin-top: 24px;
}

.social-icons {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
}

.social-icon:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}

/* Image Section - Mobile */
.contact-image-section {
    flex: 0 0 314px;
    width: 100%;
    height: 314px;
    margin-top: 80px;
}

.contact-image-box {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.contact-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #244234 0%, #1a2f26 100%);
    background-image: url('/static/images/00ecb206c8e795f040d9c5646a026a162a0c1634.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    opacity: 0.95;
}

