﻿
/* ===== بخش اول: هدر ===== */
.amoreman-hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem 2rem;
    background: white;
    border-radius: 0 0 60px 60px;
    box-shadow: 0 4px 60px rgba(0,0,0,0.04);
    position: relative;
    z-index: 5;
}

.amoreman-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 450px;
}

.amoreman-hero-text {
    padding-right: 1rem;
}

.amoreman-hero-badge {
    display: inline-block;
    background: #eef2ff;
    color: #2563eb;
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.amoreman-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #0a1e3c;
    margin-bottom: 1.2rem;
}

    .amoreman-hero-title span {
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.amoreman-hero-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

/* ===== عکس ===== */
.amoreman-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

    .amoreman-hero-image img {
        width: 100%;
        max-width: 550px;
        height: 100%;
        object-fit: cover;
        border-radius: 30px;
    }

/* ===== بخش آمار ===== */
.amoreman-stats-section {
    max-width: 1400px;
    margin: -1.5rem auto 0;
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.amoreman-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.amoreman-stat-item {
    text-align: center;
    padding: 0.5rem;
    border-left: 2px solid #f1f5f9;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.9, 0.4, 1);
}

    .amoreman-stat-item:last-child {
        border-left: none;
    }

    .amoreman-stat-item.amoreman-visible {
        opacity: 1;
        transform: translateY(0);
    }

.amoreman-stat-number {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #0a1e3c;
    line-height: 1.1;
}

    .amoreman-stat-number .amoreman-plus {
        font-size: 1.6rem;
        color: #2563eb;
    }

.amoreman-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 0.3rem;
}

.amoreman-stat-sub {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 0.2rem;
}

/* ===== بخش اسکرول با عکس sticky ===== */
.amoreman-scroll-section {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 3rem;
    position: relative;
}

.amoreman-scroll-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
    position: relative;
}

.amoreman-scroll-image-wrapper {
    position: sticky;
    top: 100px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(37, 99, 235, 0.2);
}

    .amoreman-scroll-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 30px;
    }

.amoreman-scroll-text {
    padding: 2rem;
}

    .amoreman-scroll-text h2 {
        font-size: 2.2rem;
        font-weight: 800;
        color: #0a1e3c;
        margin-bottom: 1.5rem;
    }

        .amoreman-scroll-text h2 span {
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .amoreman-scroll-text p {
        font-size: 1.1rem;
        color: #475569;
        line-height: 1.8;
    }

    .amoreman-scroll-text .amoreman-highlight {
        background: #eef2ff;
        padding: 0.2rem 0.6rem;
        border-radius: 8px;
        color: #2563eb;
        font-weight: 600;
    }

    .amoreman-scroll-text .amoreman-check-list {
        font-size: 0.95rem;
        color: #94a3b8;
        line-height: 2.2;
    }

        .amoreman-scroll-text .amoreman-check-list i {
            color: #2563eb;
            margin-left: 0.5rem;
        }

    .amoreman-scroll-text .amoreman-strong-blue {
        color: #2563eb;
        font-weight: 700;
    }

/* ===== بخش های placeholder ===== */
.amoreman-spacer {
    height: 80px;
    background: transparent;
}

.amoreman-spacer-small {
    height: 40px;
    background: transparent;
}

/* ===== انیمیشن ها ===== */
@keyframes amoreman-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.amoreman-hero-text {
    animation: amoreman-fadeInUp 0.8s ease;
}

.amoreman-hero-image {
    animation: amoreman-fadeInUp 0.8s ease 0.2s both;
}

.amoreman-scroll-text {
    animation: amoreman-fadeInUp 0.8s ease 0.4s both;
}

/* ===== ریسپانسیو ===== */
@media (max-width: 1024px) {
    .amoreman-hero-grid {
        gap: 2.5rem;
    }

    .amoreman-hero-desc {
        max-width: 100%;
    }

    .amoreman-scroll-container {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .amoreman-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
    }

    .amoreman-hero-text {
        padding-right: 0;
    }

    .amoreman-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .amoreman-hero-image {
        height: 300px;
    }

        .amoreman-hero-image img {
            max-width: 80%;
            height: 100%;
        }

    .amoreman-scroll-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .amoreman-scroll-image-wrapper {
        position: relative;
        top: 0;
        height: 300px;
    }

    .amoreman-scroll-text {
        padding: 0;
        text-align: center;
    }

        .amoreman-scroll-text h2 {
            font-size: 1.8rem;
        }

    .amoreman-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .amoreman-stat-item {
        border-left: none;
        border-bottom: 2px solid #f1f5f9;
        padding-bottom: 1rem;
    }

        .amoreman-stat-item:nth-child(3),
        .amoreman-stat-item:nth-child(4) {
            border-bottom: none;
        }
}

@media (max-width: 640px) {
    .amoreman-hero-section {
        padding: 2rem 1.2rem;
    }

    .amoreman-hero-title {
        font-size: 1.8rem;
    }

    .amoreman-hero-desc {
        font-size: 0.95rem;
    }

    .amoreman-hero-image {
        height: 200px;
    }

        .amoreman-hero-image img {
            max-width: 100%;
            height: 100%;
        }

    .amoreman-stats-section {
        padding: 0 1.2rem;
        margin-top: -1rem;
    }

    .amoreman-stats-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 0;
        border-radius: 30px;
    }

    .amoreman-stat-item {
        border-bottom: 2px solid #f1f5f9;
        padding: 1rem 0;
    }

        .amoreman-stat-item:last-child {
            border-bottom: none;
        }

    .amoreman-scroll-section {
        padding: 0 1rem;
        margin: 1rem auto;
    }

    .amoreman-scroll-image-wrapper {
        height: 200px;
        border-radius: 20px;
    }

        .amoreman-scroll-image-wrapper img {
            border-radius: 20px;
        }

    .amoreman-scroll-text h2 {
        font-size: 1.4rem;
    }

    .amoreman-scroll-text p {
        font-size: 0.95rem;
    }

    .amoreman-spacer {
        height: 40px;
    }
}


