﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    line-height: 1.5;
}

.founder-section {
    padding: 5rem 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2b7e3a, #1e5a2e);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a2f;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5a6e64;
    max-width: 600px;
    margin: 0 auto;
}

/* Founder Grid */
.founder-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Director Card */
.director-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .director-card:hover {
        transform: translateY(-5px);
    }

.director-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e5a2e, #2b7e3a);
}

.director-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.director-card:hover .director-img {
    transform: scale(1.05);
}

.social-links {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.director-card:hover .social-links {
    transform: translateY(0);
}

.social-icon {
    width: 32px;
    height: 32px;
    background: white;
    color: #1e5a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

    .social-icon:hover {
        background: #c47a2e;
        color: white;
        transform: scale(1.1);
    }

.director-info {
    padding: 2rem 2rem 2rem 0;
}

.director-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a2f;
    margin-bottom: 0.25rem;
}

.director-title {
    font-size: 1rem;
    color: #c47a2e;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.director-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2b7e3a;
    padding: 1rem 0;
    border-top: 2px solid #e8ecef;
    border-bottom: 2px solid #e8ecef;
    margin-bottom: 1.5rem;
}

.director-message p {
    color: #2d3e3b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.signature {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c47a2e;
    margin-top: 1rem;
}

/* VMM Grid - Different Color Cards */
.vmm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.vmm-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .vmm-card:hover {
        transform: translateY(-8px);
    }

.card-icon {
    margin-bottom: 1.25rem;
}

.vmm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vmm-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-footer-line {
    height: 3px;
    width: 50px;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.vmm-card:hover .card-footer-line {
    width: 80px;
}

/* Vision Card - Blue Theme */
.vision-card {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-bottom: 4px solid #3b82f6;
}

    .vision-card .card-icon {
        color: #2563eb;
    }

    .vision-card h3 {
        color: #1e3a8a;
    }

    .vision-card .card-footer-line {
        background: #3b82f6;
    }

/* Mission Card - Green Theme */
.mission-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-bottom: 4px solid #10b981;
}

    .mission-card .card-icon {
        color: #059669;
    }

    .mission-card h3 {
        color: #064e3b;
    }

    .mission-card .card-footer-line {
        background: #10b981;
    }

/* Moto Card - Orange/Gold Theme */
.moto-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-bottom: 4px solid #f59e0b;
}

    .moto-card .card-icon {
        color: #d97706;
    }

    .moto-card h3 {
        color: #92400e;
    }

    .moto-card .card-footer-line {
        background: #f59e0b;
    }

/* Trust Badge Container */
.trust-badge-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    text-align: center;
    background: white;
    padding: 1.25rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

    .trust-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1e5a2e;
}

.trust-label {
    font-size: 0.85rem;
    color: #5a6e64;
    font-weight: 500;
}

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
    .director-card {
        grid-template-columns: 280px 1fr;
    }
}

@media screen and (max-width: 900px) {
    .vmm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .director-card {
        grid-template-columns: 1fr;
    }

    .director-info {
        padding: 1.5rem;
    }

    .director-name {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .vmm-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge-container {
        flex-direction: column;
    }

    .trust-item {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .founder-section {
        padding: 3rem 0.5rem;
    }

    .director-name {
        font-size: 1.4rem;
    }

    .director-quote {
        font-size: 1rem;
    }

    .vmm-card {
        padding: 1.5rem;
    }
}
