.contact-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 68px;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background:linear-gradient(to bottom, rgb(22 10 0 / 48%) 0%, rgb(31 14 0 / 40%) 100% 100% );
    z-index: 1;
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 40px 24px;
}

.contact-hero__title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

body.rtl .contact-hero__title {
    letter-spacing: 0;
}

.contact-hero__sub {
    font-size: 16px;
    opacity: 0.88;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.contact-hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    color: #ffffff;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
    padding: 80px 24px;
    background: #f9fafb;
}

.contact-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-section__title {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-section__sub {
    font-size: 14px;
    color: #6b7280;
}

/* ===========================
   CONTACT GRID
=========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* ===========================
   FORM WRAP
=========================== */
.contact-form-wrap {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-wrap__title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-form-wrap__sub {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Form Groups */
.cform-group {
    margin-bottom: 18px;
}

.cform-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.cform-label span {
    color: #ef4444;
    margin-left: 2px;
}

.cform-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #1a1a2e;
    background: #ffffff;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cform-input::placeholder {
    color: #9ca3af;
}

.cform-input:focus {
    border-color: #00AEEF;
    box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}

.cform-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Phone Field */
.cform-phone-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.cform-phone-wrap:focus-within {
    border-color: #00AEEF;
    box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}

.cform-phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    border-right: 1.5px solid #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    background: #f9fafb;
}

body.rtl .cform-phone-prefix {
    border-right: none;
    border-left: 1.5px solid #e5e7eb;
}

.cform-input--phone {
    border: none;
    border-radius: 0;
    box-shadow: none !important;
}

.cform-input--phone:focus {
    border: none;
    box-shadow: none !important;
}

/* Submit Button */
.cform-submit {
    width: 100%;
    background: #00AEEF;
    color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.cform-submit:hover {
    background: #0090C8;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,174,239,0.35);
}

/* ===========================
   INFO CARD
=========================== */
.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-info-card__title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-info-card__sub {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
}

.contact-info-item__icon {
    width: 42px;
    height: 42px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item__icon svg {
    width: 20px;
    height: 20px;
    color: #00AEEF;
}

.contact-info-item__body {
    flex: 1;
}

.contact-info-item__label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 3px;
}

.contact-info-item__value {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.contact-info-item__note {
    font-size: 11px;
    font-weight: 600;
    color: #00AEEF;
    letter-spacing: 0.3px;
}

.contact-info-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 0;
}

/* Social Block */
.contact-social {
    background: linear-gradient(135deg, #0090C8, #00AEEF);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 20px;
    text-align: center;
}

.contact-social__title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-social__sub {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
}

.contact-social__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-social__btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 25px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
}

.contact-social__btn:hover {
    background: rgba(255,255,255,0.30);
}

/* Response Time */
.contact-response {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 14px;
    padding: 14px 18px;
    margin-top: 16px;
}

.contact-response__icon {
    width: 38px;
    height: 38px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-response__icon svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.contact-response__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.contact-response__value {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
    padding: 80px 24px;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header__title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.faq-header__sub {
    font-size: 14px;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ List */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #00AEEF;
    box-shadow: 0 4px 20px rgba(0,174,239,0.10);
}

.faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    user-select: none;
}

.faq-item__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.faq-num {
    width: 36px;
    height: 36px;
    background: #f0f9ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #00AEEF;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-num {
    background: #00AEEF;
    color: #ffffff;
}

.faq-question {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.faq-item.active .faq-question {
    color: #00AEEF;
}

.faq-item__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item__toggle svg {
    width: 14px;
    height: 14px;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__toggle {
    border-color: #00AEEF;
    background: #f0f9ff;
}

.faq-item.active .faq-item__toggle svg {
    color: #00AEEF;
    transform: rotate(180deg);
}

/* FAQ Body */
.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-item__body {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-item__body p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}

/* ===========================
   ALERTS
=========================== */
.alert-success {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    color: #166534;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-error {
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error p {
    margin-bottom: 4px;
}

.alert-error p:last-child {
    margin-bottom: 0;
}

.input-error {
    border-color: #ef4444 !important;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 320px;
    }

    .contact-hero__title {
        font-size: 40px;
    }

    .contact-section {
        padding: 48px 16px;
    }

    .contact-form-wrap,
    .contact-info-card {
        padding: 24px 20px;
    }

    .faq-section {
        padding: 48px 16px;
    }

    .faq-item__header {
        padding: 16px 18px;
    }

    .faq-item__body {
        padding: 0 18px;
    }

    .faq-item.active .faq-item__body {
        padding: 0 18px 16px;
    }

    .contact-social__btns {
        flex-wrap: wrap;
    }
}