/* ===================================
   Founder's Message Page - Modern Design
   =================================== */

/* Hero Section */
.founder-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 8rem 0 5rem;
    overflow: hidden;
}

.founder-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/7.jpg') center/cover;
    opacity: 0.50;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(19, 19, 20, 0.88) 0%, 
        rgba(20, 20, 20, 0.78) 100%);
    z-index: 1;
}

.founder-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    max-width: 700px;
    margin: 3 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Founder Message Section */
.founder-message-section {
    padding: var(--spacing-xl) 0;
    background: #2f2f33;
}

.message-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.founder-profile {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    align-items: center;
}

.founder-photo {
    position: relative;
}

.founder-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--text-white);
}

.founder-info h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 1.1rem;
    color: rgba(19, 19, 20, 0.8);
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
}

.founder-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.25rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.founder-social a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.message-content {
    padding: 4rem 3rem;
    background: var(--bg-white);
    position: relative;
}

.message-intro {
    margin-bottom: 2rem;
}

.quote-icon-large {
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.15;
}

.message-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
}

.emphasis-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-dark);
    font-style: italic;
}

.vision-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    margin: 2rem 0;
}

.vision-highlight h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vision-highlight h3 i {
    color: var(--accent);
}

.vision-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin: 0;
}

.message-signature {
    margin-top: 3rem;
}

.signature-line {
    width: 150px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 1rem;
}

.signature-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.signature-title {
    font-size: 1rem;
    color: var(--text-body);
    font-style: italic;
}

/* Founder Vision Section */
.founder-vision-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.vision-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.vision-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    transition: all var(--transition-base);
}

.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.vision-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* Founder CTA Section */
.founder-cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.founder-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/23_1080px.jpg') center/cover;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .founder-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .founder-photo {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-social {
        justify-content: center;
    }

    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .founder-hero {
        min-height: 40vh;
        padding: 6rem 0 3rem;
    }

    .message-card {
        margin: 1rem;
    }

    .founder-profile {
        padding: 2rem;
    }

    .founder-info h2 {
        font-size: 2rem;
    }

    .message-content {
        padding: 2.5rem 2rem;
    }

    .message-text p {
        font-size: 1rem;
    }

    .lead-paragraph {
        font-size: 1.15rem;
    }

    .emphasis-text {
        font-size: 1.2rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .quote-icon-large {
        font-size: 3.5rem;
    }

    .vision-highlight {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .vision-card,
    .hero-content {
        animation: none;
        transition: none;
    }
}
