/**
 * FINTC Theme - Personal Conversations Page Styles
 */

/* ========================================
   HERO BANNER
   ======================================== */

.pc-hero {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #2c3e50 0%, #4a6fa5 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=1920&h=600&fit=crop') center/cover no-repeat;
    opacity: 0.25;
}

.pc-hero .hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(74, 111, 165, 0.7) 100%);
    z-index: 1;
}

.pc-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pc-hero .hero-banner-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-banner-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    font-weight: 400;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .pc-hero {
        height: auto;
        min-height: 280px;
        background-size: contain;
        background-position: center top;
    }

    .pc-hero .hero-banner-title {
        font-size: 2.25rem;
    }

    .hero-banner-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .pc-hero {
        height: auto;
        min-height: 240px;
    }

    .pc-hero .hero-banner-title {
        font-size: 1.75rem;
    }

    .hero-banner-subtitle {
        font-size: 1rem;
    }
}

/* Section Title Centered */
.section-title-centered {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Grid */
.pc-services-section {
    padding: 80px 0;
    background: var(--color-white);
}

.pc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pc-service-card {
    background: var(--color-sand);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.pc-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pc-service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
}

.pc-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.pc-service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Steps */
.pc-steps {
    margin-top: 1.5rem;
}

.pc-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pc-step:last-child {
    margin-bottom: 0;
}

.pc-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.pc-step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0 0 0.5rem;
}

.pc-step-content p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Confidential Section */
.pc-confidential-section {
    padding: 80px 0;
    background: var(--color-sand);
}

.pc-confidential-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pc-confidential-icon {
    width: 90px;
    height: 90px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #059669;
}

.pc-confidential-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.pc-confidential-content p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* CTA Section */
.pc-cta-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
}

.pc-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.pc-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
}

/* Personal Conversations Responsive */
@media (max-width: 992px) {
    .pc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .personal-conversations-page .pc-hero {
        height: 300px;
    }

    .pc-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pc-services-section {
        padding: 60px 0;
    }

    .pc-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title-centered {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .pc-confidential-section {
        padding: 60px 0;
    }

    .pc-cta-section {
        padding: 60px 0;
    }

    .pc-cta-content h2 {
        font-size: 1.75rem;
    }

    .pc-cta-content p {
        font-size: 1rem;
    }

    .personal-conversations-page .pc-hero {
        height: auto;
        min-height: 250px;
    }

    .hero-banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .pc-service-card {
        padding: 24px;
    }

    .pc-confidential-icon {
        width: 70px;
        height: 70px;
    }

    .pc-confidential-icon svg {
        width: 36px;
        height: 36px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
