/* ===== PROCESS SECTION STYLES ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    
}

/* MAIN CONTAINER */
.process-section {
    background: #000000;
    padding: 6rem 3rem;
    height: 790px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.process-title {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: 100%;
    margin-top:3rem;
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

/* ===== LEFT SIDE - IMAGE ===== */
.process-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
}

.process-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Social Media Overlay Icons */
.social-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    pointer-events: none;
}

.social-icon-item {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.social-icon-item.instagram {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(255, 165, 0, 0.2));
    color: #ff007f;
    animation-delay: 0s;
}

.social-icon-item.facebook {
    background: rgba(59, 89, 152, 0.2);
    color: #3b5998;
    animation-delay: 0.2s;
}

.social-icon-item.linkedin {
    background: rgba(0, 119, 181, 0.2);
    color: #0077b5;
    animation-delay: 0.4s;
}

.social-icon-item.heart {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    animation-delay: 0.6s;
}

.chart-element {
    width: 80px;
    height: 80px;
    background: rgba(255, 165, 0, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffa500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation-delay: 0.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===== RIGHT SIDE - CARDS ===== */
.process-right {
    display: flex;
    flex-direction: column;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    width:100%;
}

/* PROCESS CARDS */
.process-card {
    background: rgba(0, 180, 180, 0.05);
    border: 1px solid rgba(0, 180, 180, 0.15);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 300px;
    width:90%;
}

.process-card:hover {
    background: rgba(0, 180, 180, 0.1);
    border-color: rgba(0, 180, 180, 0.3);
    transform: translateY(-5px);
}

/* Card Icon */
.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 180, 180, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00B4B4;
    border-top: 3px solid #00B4B4;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.process-card:hover .card-icon {
    background: rgba(0, 180, 180, 0.3);
    transform: scale(1.1);
}

/* Card Title */
.card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0.2rem 0 0 0;
    border-bottom: 2px solid #00B4B4;
    padding-bottom: 0.2rem;
}

/* Card Description */
.card-description {
    font-size: 12px;
    color: #999999;
    line-height: 1.7;
    flex-grow: 1;
}

/* ===== RESPONSIVE DESIGN ===== */

/* TABLET — restyled to match centered single-column card layout */
@media (max-width: 1024px) {
    .process-section {
        height: auto;
        padding: 4rem 2rem;
    }

    .process-title {
        margin-bottom: 2.5rem;
        font-size: 2rem;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 480px;
    }

    .process-image-wrapper {
        max-width: 280px;
        aspect-ratio: 3/4;
        margin: 0 auto;
        border-radius: 20px;
    }

    .process-right {
        width: 100%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .process-card {
        width: 100%;
        max-width: 380px;
        height: auto;
        min-height: 280px;
        padding: 2.25rem 1.75rem;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        border-radius: 16px;
        border: 1px solid rgba(0, 180, 180, 0.25);
        background: rgba(0, 180, 180, 0.04);
    }

    .card-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto;
        border-radius: 14px;
        border-top: none;
        border: 1px solid rgba(0, 180, 180, 0.4);
        font-size: 1.4rem;
    }

    .card-title {
        font-size: 16px;
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
        border-top: 2px solid #00B4B4;
        padding-top: 0.6rem;
        width: 60%;
        margin: 0.5rem auto 0;
    }

    .card-description {
        font-size: 13px;
        text-align: center;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .process-section {
        padding: 3rem 1.5rem;
    }

    .process-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-image-wrapper {
        max-width: 80%;
        aspect-ratio: 3/4;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 80%;
        margin: 0 auto;
    }

    .process-card {
        padding: 1.75rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    .social-icon-item,
    .chart-element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .process-section {
        padding: 2rem 1rem;
    }

    .process-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .process-container {
        gap: 2rem;
    }

    .process-grid {
        gap: 1.25rem;
    }

    .process-card {
        padding: 1.5rem 1.25rem;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .card-description {
        font-size: 0.85rem;
    }
}