/* services-two-column-paired.css */

:root {
    --primary-red: #dc2626;
    --primary-dark: #1f2937;
    --primary-light: #fef2f2;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-800: #1f2937;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-lg: 12px;
}

a {
    text-decoration: none;
    color: var(--primary-red)
}
button > a{
    color:var(--gray-100);
}
/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Center Line */
.timeline-center-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-red) 10%, var(--primary-red) 90%, transparent 100%);
    z-index: 1;
}

/* Timeline Pair */
.timeline-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: -40px;
    margin-bottom: 80px;
    position: relative;
    min-height: 400px;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Right Column */
.right-column {
    justify-content: flex-end;
    padding-right: 60px;
}

/* Left Column */
.left-column {
    justify-content: flex-start;
    padding-left: 60px;
}

/* Timeline Node */
.timeline-node {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.right-column .timeline-node {
    right: -25px;
}

.left-column .timeline-node {
    left: -25px;
}

/* Node Circle */
.node-circle {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .node-circle:hover {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.1);
    }

.node-number {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-red);
}

.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    animation: nodePing 2s ease-out infinite;
    opacity: 0;
}

@keyframes nodePing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Timeline Content */
.timeline-content {
    width: 100%;
    max-width: 500px;
}

.content-inner {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .content-inner:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-red);
    }

/* Service Topbar */
.service-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.service-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .service-tag.popular {
        background: #fef2f2;
        color: var(--primary-red);
    }

    .service-tag.sustainable {
        background: #f0fdf4;
        color: #16a34a;
    }

    .service-tag.safety {
        background: #fef3c7;
        color: #d97706;
    }

    .service-tag.energy {
        background: #dbeafe;
        color: #2563eb;
    }

    .service-tag.strategic {
        background: #f5f3ff;
        color: #7c3aed;
    }

.service-iso {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 14px;
}

/* Service Main */
.service-main {
    margin-bottom: 25px;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Features */
.service-features {
    margin-bottom: 25px;
}

.feature-row {
    background: var(--gray-50);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-800);
    transition: all 0.3s ease;
}

    .feature-row:hover {
        background: var(--primary-light);
        transform: translateX(5px);
    }

/* Service Meta */
.service-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.meta-cell {
    text-align: center;
}

.meta-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    display: block;
    font-weight: 700;
    color: var(--gray-800);
    font-size: 16px;
}

/* Service Action Button */
.service-action {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

    .service-action:hover {
        background: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-pair {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .right-column, .left-column {
        padding: 0;
        justify-content: center;
    }

    .timeline-node {
        display: none;
    }

    .timeline-center-line {
        display: none;
    }

    .timeline-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .timeline-container {
        padding: 40px 15px;
    }

    .content-inner {
        padding: 20px;
    }

    .service-meta {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-title {
        font-size: 20px;
    }
}

/* Animation Classes */
.timeline-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .timeline-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Pair Animation */
.timeline-pair:nth-child(even) .timeline-item {
    transition-delay: 0.2s;
}
/* Professional Animated Section Header Styles */

.section-header {
    position: relative;
    text-align: center;
    margin: 6rem 0 4rem;
    padding: -2rem 1rem;
    overflow: hidden;
}
/* Elegant Minimal Header Styles */

.section-header {
    text-align: center;
    margin: 4rem auto 3rem;
    padding: 0 1rem;
    max-width: 900px;
    position: relative;
    padding-top: 60px;
}

    /* Main Title - Elegant & Minimal */
    .section-header h2 {
        font-size: 2.8rem;
        font-weight: 300;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: #1a202c;
        letter-spacing: -0.02em;
        font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
        position: relative;
        padding-bottom: 1.5rem;
    }

        /* Thin Underline Animation */
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e54646, transparent);
            animation: underlineExpand 1.2s ease-out 0.5s forwards;
            opacity: 0;
        }

    /* Subtitle - Light & Airy */
    .section-header p {
        font-size: 1.2rem;
        font-weight: 350;
        line-height: 1.6;
        color: #718096;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeUp 0.8s ease 0.8s forwards;
        font-family: 'Inter', 'SF Pro Text', -apple-system, sans-serif;
        letter-spacing: 0.01em;
    }

    /* Persian/Arabic Font Support */
    .section-header h2[lang="fa"],
    .section-header h2[lang="ar"] {
        font-family: 'Vazirmatn', 'SF Arabic', 'Segoe UI', sans-serif;
        font-weight: 400;
        letter-spacing: 0;
    }

    /* Subtle Hover Effects */
    .section-header h2:hover {
        color: #2d3748;
        transition: color 0.3s ease;
    }

        .section-header h2:hover::after {
            width: 80px;
            background: linear-gradient(90deg, transparent, #f16363, transparent);
            transition: all 0.4s ease;
        }

    .section-header p:hover {
        color: #4a5568;
        transition: color 0.3s ease;
    }

/* Animations */
@keyframes underlineExpand {
    0% {
        width: -0;
        opacity: 0;
    }

    100% {
        width: 60px;
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Subtle Floating Elements */
.section-header .elegant-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #cbd5e0;
    border-radius: 50%;
    opacity: 0;
    animation: dotFade 3s ease infinite;
}

/* Service Count Badge - Minimal */
.section-header .service-badge {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1.2rem;
    background: transparent;
    color: #e54646;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

    .section-header .service-badge:hover {
        background: rgba(79, 70, 229, 0.04);
        border-color: rgba(229, 70, 70, 0.4);
        transform: translateY(-2px);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .section-header {
        margin: 3rem auto 2rem;
    }

        .section-header h2 {
            font-size: 2.2rem;
            padding-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            max-width: 90%;
        }

        .section-header h2::after {
            width: 40px;
        }

        .section-header h2:hover::after {
            width: 50px;
        }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.9rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* Optional: Add subtle gradient text for premium look */
.section-header.premium h2 {
    background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

/* Optional: Add icon before title */
.section-header.with-icon h2::before {
    content: '✦';
    display: inline-block;
    margin-right: 0.8rem;
    color: #4f46e5;
    font-size: 1.2rem;
    vertical-align: middle;
    opacity: 0.7;
}
/* About Us Custom Styles */
.abt-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.abt-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: -2rem;
}

.abt-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.abt-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

    .abt-subtitle span {
        font-size: 1.25rem;
        color: #4b5563;
        font-weight: 500;
    }

.abt-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 3px;
}

.abt-hero-text .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.abt-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

    .highlight-item svg {
        color: #3b82f6;
    }

    .highlight-item span {
        font-weight: 500;
        color: #374151;
    }

/* Certificate Animation */
.certificate-animation {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-seal {
    position: relative;
    width: 150px;
    height: 150px;
}

.seal-ring {
    width: 100%;
    height: 100%;
    border: -4px solid #3b82f6;
    border-radius: 50%;
    animation: sealRotate 10s linear infinite;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.seal-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 900;
    color: #3b82f6;
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.badge {
    position: absolute;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 25px;
    animation: badgeFloat 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

    .badge:nth-child(1) {
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .badge:nth-child(2) {
        top: 60%;
        right: 15%;
        animation-delay: 2s;
    }

    .badge:nth-child(3) {
        bottom: 20%;
        left: 40%;
        animation-delay: 4s;
    }

/* Overview Grid */
.abt-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .overview-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.overview-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.mission-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-color: #bae6fd;
}

.values-card {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.services-card {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.experience-card {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border: none;
}

.mission-icon {
    width: -60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mission-highlight {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 50px;
    font-weight: 600;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.05);
}

.value-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
}

.value-item span {
    font-weight: 500;
    color: #374151;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
}

.service-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 8px;
}

.service-item span {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.experience-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

    .experience-number .plus {
        font-size: 2.5rem;
        font-weight: 700;
        margin-left: -0.5rem;
    }

.experience-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.experience-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: -1rem;
}

.experience-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    margin-left: auto;
}

/* Commitment Section */
.abt-commitment {
    padding: 4rem 0;
    text-align: center;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

    .commitment-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 1.5rem;
    }

.commitment-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
        gap: 1.25rem;
    }

    .cta-button svg {
        transition: transform 0.3s ease;
    }

    .cta-button:hover svg {
        transform: translateX(6px);
    }

/* Animations */
@keyframes sealRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(2deg);
    }

    66% {
        transform: translateY(5px) rotate(-2deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .abt-hero-grid {
        gap: 3rem;
    }

    .abt-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .abt-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .abt-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .mission-card,
    .values-card,
    .services-card,
    .experience-card {
        grid-column: 1 / 2;
    }

    .mission-card {
        grid-row: 1 / 2;
    }

    .values-card {
        grid-row: 2 / 3;
    }

    .services-card {
        grid-row: 3 / 4;
    }

    .experience-card {
        grid-row: 4 / 5;
    }
}

@media (max-width: 768px) {
    .abt-title {
        font-size: 2.5rem;
    }

    .abt-overview-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .experience-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .experience-badge {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .abt-title {
        font-size: 2rem;
    }

    .abt-hero-grid {
        padding: 2rem 0;
    }

    .overview-card,
    .bento-card {
        padding: 1.5rem;
    }

    .commitment-content h2 {
        font-size: 2rem;
    }

    .commitment-text {
        font-size: 1.1rem;
    }
}
/* ساختار اصلی - یک بخش وسط‌چین */
.abt-hero-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.abt-hero-content-single {
    max-width: -1000px;
    width: 100%;
    margin: 0 auto;
}

.abt-hero-img-single {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, -0, 0.15);
}

    .abt-hero-img-single img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Trust Indicators - با رنگ قرمز و وسط‌چین */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(185, 28, 28, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    max-width: 1000px;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626; /* قرمز */
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Section - وسط‌چین */
.cta-section {
    margin-top: 4rem;
    margin-bottom: 30px;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

    .cta-section h3 {
        font-size: 2rem;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .cta-section > p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4b5563;
        margin-bottom: 2.5rem;
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

/* Benefits Grid - وسط‌چین */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.03); /* قرمز با شفافیت */
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1); /* قرمز با شفافیت */
    transition: all 0.3s ease;
    text-align: left;
}

    .benefit:hover {
        transform: translateY(-5px);
        background: rgba(220, 38, 38, 0.08); /* قرمز با شفافیت بیشتر */
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15); /* سایه قرمز */
    }

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626, #b91c1c); /* گرادیان قرمز */
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Final CTA - وسط‌چین */
.final-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    .cta-text strong {
        color: #1f2937;
        font-weight: 800;
    }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c); /* گرادیان قرمز */
    color: white;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3); /* سایه قرمز */
}

    .primary-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4); /* سایه قرمز قوی‌تر */
        gap: 1.25rem;
    }

.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    color: #dc2626; /* قرمز */
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #dc2626; /* قرمز */
    transition: all 0.3s ease;
}

    .secondary-cta:hover {
        background: rgba(220, 38, 38, 0.05); /* قرمز با شفافیت */
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2); /* سایه قرمز */
    }

/* استایل‌های اضافی برای وسط‌چین */
.abt-hero-content-single {
    padding: 0;
}

.abt-hero-text {
    margin-top: 2rem;
}

.abt-highlights {
    margin: 2rem auto;
    max-width: 800px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #374151;
    justify-content: center;
}

    .highlight-item svg {
        color: #dc2626; /* قرمز */
    }

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.abt-subtitle {
    margin-bottom: 2rem;
}

    .abt-subtitle span {
        font-size: 1.25rem;
        color: #6b7280;
        font-weight: 600;
    }

.abt-underline {
    width: 60px;
    height: 3px;
    background: #dc2626; /* قرمز */
    margin: 0.5rem auto 0 auto;
}

.abt-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(220, 38, 38, 0.1); /* قرمز با شفافیت */
    color: #dc2626; /* قرمز */
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.abt-title {
    text-align: center;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }

    .abt-hero-content-single {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }

    .trust-number {
        font-size: 2rem;
    }

    .cta-section {
        padding: 2rem;
        max-width: 500px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        justify-content: center;
    }

    .benefit {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .abt-hero-content-single {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .abt-title {
        font-size: 2rem;
    }

    .cta-section h3 {
        font-size: 1.75rem;
    }

    .abt-hero-img-single {
        margin-bottom: 2rem;
    }

    .abt-hero-content-single {
        max-width: 100%;
        padding: 0 1rem;
    }

    .trust-indicators,
    .cta-section,
    .benefits-grid,
    .final-cta {
        max-width: 100%;
    }
}

/* اصلاح مقادیر منفی */
.abt-hero-content-single {
    max-width: 1000px; /* اصلاح از -1000px به 1000px */
}

.abt-hero-img-single img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); /* اصلاح از -0 به 0 */
}
/* در فایل About Us.css */
.abt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px; /* این خط موجود است */
    /* اضافه کردن این خط: */
    padding-top: 200px; /* یا هر مقدار دلخواه */
}

@media (max-width: 768px) {
    /* اصلاح کانتینر اصلی برای وسط‌چین شدن دقیق */
    .cta-section {
        /* حذف تمام استایل‌های عرضی قبلی */
        width: 90% !important;
        max-width: 400px !important;
        /* اجبار به وسط‌چین شدن با استفاده از margin */
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important; /* اطمینان از اینکه به صورت بلوک رفتار می‌کند */
        /* اصلاح پدینگ‌ها برای تقارن داخلی */
        padding: 24px 16px !important;
        /* رفع مشکلات احتمالی از والدین */
        float: none !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        box-sizing: border-box !important;
        border-radius: 20px !important;
    }

    /* اصلاح دکمه‌ها برای اینکه از باکس بیرون نزنند و ظریف باشند */
    .cta-buttons {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        margin: 0 !important; /* مارجین داخلی دکمه‌ها صفر */
    }

        .cta-buttons .primary-cta,
        .cta-buttons .secondary-cta,
        .cta-buttons .service-action {
            width: 200px !important; /* عرض کمتر و شیک‌تر طبق درخواستت */
            min-width: 200px !important;
            max-width: 100% !important;
            margin: 0 auto !important;
            padding: 12px !important;
            font-size: 14px !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            box-sizing: border-box !important;
        }
}
/* --- Exact Mobile CTA Match to Screenshot --- */
@media (max-width: 768px) {
    /* والد اصلی را ریست می‌کنیم تا کارت فضای کافی داشته باشد */
    .abt-hero-content-single {
        padding: 10px !important;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-section {
        /* عرض کارت طبق تصویر */
        width: 100% !important;
        max-width: 450px !important;
        /* تراز وسط و فاصله عمودی */
        margin: 20px auto !important;
        /* استایل کارت (سفید با سایه نرم و گوشه گرد) */
        background: #ffffff !important;
        padding: 35px 20px !important;
        border-radius: 24px !important; /* طبق عکس گوشه‌ها خیلی گرد هستند */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid rgba(0,0,0,0.03) !important;
        text-align: center;
        box-sizing: border-box;
    }

    /* استایل دکمه‌ها برای شباهت ۱۰۰٪ به عکس */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        align-items: center;
    }

        .cta-buttons a {
            width: 100% !important;
            max-width: 280px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px !important; /* دکمه‌های کپسولی طبق عکس */
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s;
        }

    .primary-cta {
        background: #cc2121 !important; /* قرمز برند */
        color: white !important;
    }

    .secondary-cta {
        background: transparent !important;
        border: 1.5px solid #cc2121 !important;
        color: #cc2121 !important;
    }

    /* حذف آیکون‌های اضافی اگر در موبایل باعث شلوغی می‌شوند (اختیاری) */
    .benefit-icon {
        display: none;
    }
}
