:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d842374 */.main-nav ul {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .main-nav a {
            text-decoration: none;
            font-weight: 500;
            color: #1f3a5f;
            transition: 0.2s;
            font-size: 0.95rem;
            letter-spacing: -0.3px;
        }

        .main-nav a:hover, .main-nav a.active {
            color: #c52828;
        }

        /* PAGE TITLE */
        .page-title {
            text-align: center;
            margin: 48px 0 24px;
        }

        .page-title h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #0f2b4d;
            position: relative;
            display: inline-block;
            padding-bottom: 16px;
        }

        .page-title h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 3px;
            background: #c52828;
            border-radius: 4px;
        }

        /* INTRO TEXT */
        .intro-text {
            max-width: 800px;
            margin: 0 auto 40px auto;
            text-align: center;
            background: white;
            padding: 20px 28px;
            border-radius: 32px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            color: #334155;
        }

        /* CONTACT CARDS GRID */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .contact-card {
            background: white;
            border-radius: 28px;
            padding: 28px 20px;
            text-align: center;
            box-shadow: 0 12px 24px -8px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #ecf3fa;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: #eef2ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: #c52828;
            font-size: 28px;
        }

        .contact-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0f2b4d;
        }

        .contact-card p, .contact-card a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            direction: ltr;
            display: inline-block;
        }

        .contact-card a:hover {
            color: #c52828;
        }

        /* FORM SECTION */
        .form-section {
            background: white;
            border-radius: 32px;
            padding: 40px 36px;
            margin: 50px 0;
            box-shadow: 0 12px 28px -8px rgba(0,0,0,0.05);
            border: 1px solid #eef2ff;
        }

        .form-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f2b4d;
            margin-bottom: 12px;
            text-align: center;
        }

        .form-section .form-sub {
            text-align: center;
            color: #4b5563;
            margin-bottom: 32px;
        }

        .form-row {
            margin-bottom: 20px;
        }

        .form-row label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1e293b;
        }

        .form-row input, .form-row textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            font-family: 'Vazirmatn', sans-serif;
            font-size: 0.95rem;
            transition: 0.2s;
            background: #fefefe;
        }

        .form-row input:focus, .form-row textarea:focus {
            outline: none;
            border-color: #c52828;
            box-shadow: 0 0 0 3px rgba(197, 40, 40, 0.1);
        }

        .submit-btn {
            background: #c52828;
            color: white;
            border: none;
            padding: 12px 28px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.2s;
            width: 100%;
            font-family: 'Vazirmatn', sans-serif;
        }

        .submit-btn:hover {
            background: #a01e1e;
        }

        /* WARNING NOTE (جعلی‌ها) */
        .warning-note {
            background: #fff6e5;
            border-right: 4px solid #e67e22;
            border-radius: 24px;
            padding: 24px 28px;
            margin: 30px 0 50px;
        }

        .warning-note h4 {
            color: #c52828;
            font-weight: 700;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        .warning-note p {
            color: #4b3b1c;
        }

        .members-link {
            color: #c52828;
            font-weight: 600;
            text-decoration: none;
        }

        .members-link:hover {
            text-decoration: underline;
        }/* End custom CSS */