﻿/* =============================================
   CONTACT PAGE - ارتباط با ما
   ============================================= */

/* ----- کانتینر ----- */
.initial-txt-pad-right {
    max-width: 900px;
    margin: 0 auto;
}

/* ----- متن بالای صفحه ----- */
.contact-txt-style {
    font-size: 15px;
    line-height: 2.2;
    color: #4b5563;
    margin-bottom: 20px;
    text-align: justify;
}

    .contact-txt-style strong {
        color: #ef4444;
    }

    /* ----- آیکون‌های اطلاعات تماس ----- */
    .contact-txt-style.h4-size {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px !important;
        font-weight: 600;
        color: #374151;
        padding: 14px 18px;
        background: rgba(239, 68, 68, 0.03);
        border-radius: 14px;
        border: 1px solid rgba(239, 68, 68, 0.1);
        transition: all 0.3s ease;
    }

        .contact-txt-style.h4-size i {
            font-size: 22px;
            color: #ef4444;
            width: 30px;
            text-align: center;
        }

/* ----- هدر اصلی ----- */
.page-header.h1-size {
    font-size: 28px !important;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: none !important;
    position: relative;
}

    .page-header.h1-size::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to left, #ef4444, #f87171);
        border-radius: 4px;
    }

/* ----- فرم ----- */
#messageform {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
}

    #messageform .form-group {
        margin-bottom: 20px;
    }

    #messageform .form-control {
        border-radius: 14px;
        padding: 14px 18px;
        font-size: 15px;
        border: 1.5px solid #e5e7eb;
        background: #fafafa;
        transition: all 0.3s ease;
    }

        #messageform .form-control:focus {
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
            background: #fff;
        }

    #messageform select.form-control {
        cursor: pointer;
        height : 50px;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: left 16px center;
        padding-left: 40px;
    }

    #messageform textarea.form-control {
        resize: vertical;
        min-height: 150px;
    }

/* ----- شمارنده کاراکتر ----- */
#charCount {
    text-align: left;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 6px;
}

/* ----- دکمه ارسال ----- */
.btn-reg-msg {
    width: 100%;
    padding: 14px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3) !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
}

    .btn-reg-msg:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4) !important;
    }

    .btn-reg-msg:active {
        transform: scale(0.98) !important;
    }

/* ----- Dark mode ----- */
.dark-mode .contact-txt-style {
    color: #d1d5db;
}

    .dark-mode .contact-txt-style.h4-size {
        background: rgba(239, 68, 68, 0.06);
        border-color: rgba(239, 68, 68, 0.15);
        color: #e2e8f0;
    }

.dark-mode #messageform {
    background: #1e293b;
    border-color: rgba(255,255,255,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

    .dark-mode #messageform .form-control {
        background: #0f172a;
        border-color: #334155;
        color: #e2e8f0;
    }

        .dark-mode #messageform .form-control:focus {
            border-color: #ef4444;
            background: #1a2332;
        }

        .dark-mode #messageform .form-control::placeholder {
            color: #64748b;
        }

.dark-mode .page-header.h1-size {
    color: #f3f4f6;
}

.dark-mode #messageform select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

/* ----- موبایل ----- */
@media (max-width: 767px) {
    .contact-txt-style.h4-size {
        font-size: 14px !important;
        padding: 12px 14px;
    }

        .contact-txt-style.h4-size i {
            font-size: 18px;
        }

    #messageform {
        padding: 20px;
    }

    .page-header.h1-size {
        font-size: 22px !important;
    }

    .btn-reg-msg {
        padding: 12px 20px !important;
        font-size: 15px !important;
    }

    #messageform .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }
}
