/* =============================================================================
   SOCIA ABOUT PAGE - PROFESSIONAL STYLING
   ============================================================================= */

/* === ROOT VARIABLES === */
:root {
    --socia-primary: #9d3ef5;
    --socia-secondary: #6366f1;
    --socia-gold: #f59e0b;
    --socia-success: #10b981;
    --socia-warning: #f59e0b;
    --socia-danger: #ef4444;
    --socia-white: #ffffff;
    --socia-black: #000000;
    --socia-gray-50: #f9fafb;
    --socia-gray-100: #f3f4f6;
    --socia-gray-200: #e5e7eb;
    --socia-gray-300: #d1d5db;
    --socia-gray-400: #9ca3af;
    --socia-gray-500: #6b7280;
    --socia-gray-600: #4b5563;
    --socia-gray-700: #374151;
    --socia-gray-800: #1f2937;
    --socia-gray-900: #111827;
    --socia-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --socia-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --socia-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --socia-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --socia-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--socia-gray-900);
    background: var(--socia-white);
    overflow-x: hidden;
}

/* === CONTAINER === */
.socia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === NAVIGATION (INSIDE OS WINDOW) === */
.socia-nav {
    position: relative;
    background: transparent;
    border-bottom: 1px solid var(--socia-gray-200);
    z-index: 100;
}

.socia-nav-container {
    max-width: 100%;
    margin: 0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.socia-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--socia-gray-900);
    font-weight: 700;
    font-size: 1.25rem;
}

.socia-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.socia-nav-link {
    color: var(--socia-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--socia-transition);
    position: relative;
}

.socia-nav-link:hover,
.socia-nav-link.active {
    color: var(--socia-primary);
}

.socia-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--socia-primary);
    transform: scaleX(0);
    transition: var(--socia-transition);
}

.socia-nav-link:hover::after,
.socia-nav-link.active::after {
    transform: scaleX(1);
}

/* === HERO SECTION === */
.socia-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 -2rem;
}

.socia-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.socia-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(157, 62, 245, 0.9) 0%,
        rgba(99, 102, 241, 0.8) 50%,
        rgba(139, 69, 19, 0.7) 100%);
}

.socia-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 100px 100px, 120px 120px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.socia-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.socia-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    color: var(--socia-white);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.socia-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--socia-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.socia-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTION STYLING === */
.socia-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--socia-gray-900);
    margin-bottom: 3rem;
    position: relative;
}

.socia-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--socia-primary);
    border-radius: 2px;
}

/* === WE ARE SECTION === */
.socia-mission {
    padding: 6rem 0;
    background: var(--socia-gray-50);
}

.socia-team-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.socia-skill-card {
    background: var(--socia-white);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--socia-shadow-md);
    border: 1px solid var(--socia-gray-200);
    transition: var(--socia-transition);
    position: relative;
    overflow: hidden;
}

.socia-skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--socia-primary), var(--socia-secondary));
}

.socia-skill-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--socia-shadow-xl);
}

.socia-skill-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--socia-white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--socia-shadow-lg);
}

.socia-skill-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1rem;
}

.socia-skill-description {
    color: var(--socia-gray-700);
    line-height: 1.6;
    font-size: 0.95rem;
}

.socia-mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.socia-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--socia-white);
    border-radius: 0.75rem;
    box-shadow: var(--socia-shadow-md);
    transition: var(--socia-transition);
}

.socia-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--socia-shadow-xl);
}

.socia-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--socia-primary);
    margin-bottom: 0.5rem;
}

.socia-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--socia-gray-700);
}

/* === STORY SECTION === */
.socia-story {
    padding: 6rem 0;
    background: var(--socia-white);
}

.socia-story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.socia-story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--socia-primary);
    transform: translateX(-50%);
}

.socia-story-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.socia-story-item:nth-child(even) {
    flex-direction: row-reverse;
}

.socia-story-item:nth-child(even) .socia-story-content {
    text-align: right;
}

.socia-story-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: var(--socia-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--socia-white);
    font-size: 1.5rem;
    box-shadow: var(--socia-shadow-lg);
    flex-shrink: 0;
}

.socia-story-content {
    flex: 1;
    background: var(--socia-white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--socia-shadow-md);
    border: 1px solid var(--socia-gray-200);
    transition: var(--socia-transition);
}

.socia-story-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--socia-shadow-lg);
}

.socia-story-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 0.75rem;
}

.socia-story-content p {
    color: var(--socia-gray-700);
    line-height: 1.6;
}

/* === VALUES SECTION === */
.socia-values {
    padding: 6rem 0;
    background: var(--socia-gray-50);
}

.socia-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.socia-value-card {
    background: var(--socia-white);
    padding: 2.5rem 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: var(--socia-shadow-md);
    border: 1px solid var(--socia-gray-200);
    transition: var(--socia-transition);
    position: relative;
    overflow: hidden;
}

.socia-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--socia-primary), var(--socia-secondary));
}

.socia-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--socia-shadow-xl);
}

.socia-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--socia-white);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--socia-shadow-lg);
}

.socia-value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--socia-gray-900);
    margin-bottom: 1rem;
}

.socia-value-description {
    color: var(--socia-gray-700);
    line-height: 1.6;
}

/* === CTA SECTION === */
.socia-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--socia-primary), var(--socia-secondary));
    color: var(--socia-white);
    text-align: center;
}

.socia-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.socia-cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.socia-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--socia-white);
    color: var(--socia-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: var(--socia-transition);
    box-shadow: var(--socia-shadow-lg);
}

.socia-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--socia-shadow-xl);
}

/* === FOOTER === */
.socia-footer {
    background: var(--socia-gray-900);
    color: var(--socia-white);
    padding: 3rem 0 1rem;
}

.socia-footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.socia-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.socia-footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.socia-footer-tagline {
    color: var(--socia-gray-400);
    font-size: 0.9rem;
}

.socia-footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.socia-footer-link {
    color: var(--socia-gray-300);
    text-decoration: none;
    transition: var(--socia-transition);
}

.socia-footer-link:hover {
    color: var(--socia-white);
}

.socia-footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.socia-social-link {
    width: 40px;
    height: 40px;
    background: var(--socia-gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--socia-gray-300);
    text-decoration: none;
    transition: var(--socia-transition);
}

.socia-social-link:hover {
    background: var(--socia-primary);
    color: var(--socia-white);
}

.socia-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--socia-gray-700);
    color: var(--socia-gray-400);
    font-size: 0.9rem;
}

/* === RESPONSIVE BUTTON TEXT === */
.socia-btn-text-mobile {
    display: none;
}

.socia-btn-text-full {
    display: inline;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .socia-btn-text-mobile {
        display: inline;
    }

    .socia-btn-text-full {
        display: none;
    }
    .socia-nav-links {
        gap: 1rem;
    }

    .socia-nav-link {
        font-size: 0.8rem;
    }

    .socia-nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .socia-hero-title {
        font-size: 2.5rem;
    }

    .socia-hero-subtitle {
        font-size: 1.1rem;
    }

    .socia-section-title {
        font-size: 2rem;
    }

    .socia-team-skills {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .socia-skill-card {
        padding: 1.5rem;
    }

    .socia-mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .socia-story-timeline::before {
        left: 30px;
    }

    .socia-story-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .socia-story-item:nth-child(even) .socia-story-content {
        text-align: left;
    }

    .socia-story-icon {
        position: absolute;
        left: 0;
    }

    .socia-values-grid {
        grid-template-columns: 1fr;
    }

    .socia-cta-title {
        font-size: 2rem;
    }

    .socia-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .socia-footer-brand {
        align-items: center;
    }

    .socia-footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .socia-container {
        padding: 0 1rem;
    }

    .socia-hero-title {
        font-size: 2rem;
    }

    .socia-hero-subtitle {
        font-size: 1rem;
    }

    .socia-section-title {
        font-size: 1.75rem;
    }

    .socia-value-card {
        padding: 2rem 1rem;
    }

    .socia-cta-title {
        font-size: 1.75rem;
    }

    .socia-footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}