/* ============================================
   ABOUT & CTA SECTION STYLES
   Self-contained CSS file
   ============================================ */

/* CSS Variables */
:root {
    --color-bg: #faf8f5;
    --color-primary: #1a3a52;
    --color-accent: #000000;
    --color-text: #2d3748;
    --color-text-dark: #1a202c;
    --color-text-light: #718096;
    --color-card: #ffffff;
    --color-border: #e2e8f0;
}

/* ============================================
   ABOUT CTA SECTION
   ============================================ */

.about-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 1.25rem;
    margin-top: 4rem;
}

.about-cta-container {
    max-width: 62.5rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* ============================================
   ABOUT CONTENT
   ============================================ */

.about-content h2,
.cta-content h2 {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.about-content p {
    color: #333333;
    line-height: 1.4;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 200;
}

/* ============================================
   CTA CONTENT
   ============================================ */

.cta-content p {
    color: #000000;
    line-height: 1.4;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ============================================
   SOCIAL CONTACT BUTTONS
   ============================================ */

.social-contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background: #fff;
    color: #2d3748;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 0.125rem solid #e2e8f0;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.05);
}

.social-contact-btn:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1);
    border-color: #cbd5e0;
}

.social-contact-btn svg {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.5rem;
}

/* X (Twitter) color */
.social-contact-btn.x-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* WhatsApp color */
.social-contact-btn.whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* Telegram color */
.social-contact-btn.telegram-btn:hover {
    background: #0088cc;
    color: #fff;
    border-color: #0088cc;
}

/* WeChat color */
.social-contact-btn.wechat-btn:hover {
    background: #09B83E;
    color: #fff;
    border-color: #09B83E;
}

/* Website color */
.social-contact-btn.website-btn:hover {
    background: #4a5568;
    color: #fff;
    border-color: #4a5568;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 48rem) {
    .about-cta-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-cta-section {
        padding: 3rem 1.25rem;
        margin-top: 3rem;
    }

    .social-contact-buttons {
        justify-content: flex-start;
    }

    .social-contact-btn {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 7.5rem;
    }
}

/* Accessibility: High contrast mode support */
@media (prefers-contrast: high) {
    .social-contact-btn {
        border: 0.125rem solid #000000;
    }
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .social-contact-btn {
        transition: none;
    }

    .social-contact-btn:hover {
        transform: none;
    }
}
