/* ==========================================================
   C:\wamp64\www\sida2\css\sections.css
   ========================================================== */
   .section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #fff;
}

.section:nth-child(even) {
    background: #f8fafc;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(37, 99, 235, .08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.section-title {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    font-weight: 900;
    color: var(--text);
}

.section-title span {
    color: var(--primary);
}

.section-description {
    font-size: 17px;
    line-height: 2;
    color: var(--text-light);
}

.section-content {
    position: relative;
}

.section-divider {
    width: 120px;
    height: 5px;
    margin: 24px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    .section-header {
        margin-bottom: 50px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-description {
        font-size: 15px;
    }
}


/* ==========================================================
   گرید تماس + درباره ما
   ========================================================== */
   .contact-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-about-col {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.contact-about-col:hover {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .contact-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-about-col {
        padding: 25px;
    }
}