/* About Hero Section */
.about-hero {
    background: var(--midnight-blue);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
}

.founder-section .grid-2 {
    display: flex;
    align-items: stretch;
    gap: 3rem;
}

.founder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1.5rem 0;
}

.founder-image img {
    height: 100%;
    max-height: 400px;
    width: auto;
    border-radius: 20px;
    border: 3px solid var(--gold-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
    background: var(--bg-dark);
}

.founder-content {
    padding: 2rem;
}

.founder-content h2 {
    color: var(--midnight-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.founder-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.founder-social .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.founder-social .social-link:hover {
    background: var(--yellow);
    transform: translateY(-3px);
}

.founder-social .social-link img {
    width: 20px;
    height: 20px;
}

/* Mission & Vision Section */
.mission-vision {
    background: var(--light-gray);
    padding: 80px 0;
}

.mission-card,
.vision-card {
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-color);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
}

.mission-card h3,
.vision-card h3 {
    color: var(--midnight-blue);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--midnight-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.value-card {
    border: 2px solid var(--gold-color);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    color: var(--midnight-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.team-card {
    border: 2px solid var(--gold-color);
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: var(--midnight-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--yellow);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--midnight-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    background: var(--yellow);
    color: var(--midnight-blue);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-content .btn:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }

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

    .founder-section .grid-2 {
        flex-direction: column;
        align-items: center;
    }
    .founder-image, .founder-image img {
        height: auto;
        max-height: 320px;
        min-height: unset;
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 40px;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .founder-section .grid-2 {
        grid-template-columns: 1fr;
    }

    .founder-image {
        margin-bottom: 2rem;
    }

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

    .values-section .grid-3 {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .founder-content h2 {
        font-size: 1.75rem;
    }

    .founder-content h3 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Modern Footer */
.modern-footer {
    background: var(--bg-secondary);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #D4AF37;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
}

.footer-tagline {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-col ul,
.footer-contact-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li,
.footer-contact-col ul li {
    margin-bottom: 0.75rem;
}

.footer-links-col ul li a,
.footer-contact-col ul li a {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-col ul li a:hover,
.footer-contact-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social .social-link img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: var(--text-light);
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Responsive Footer */
@media (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
    }
    .footer-brand {
        grid-column: auto;
        max-width: 300px;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-social {
        justify-content: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gold-color) !important;
}

body, p, li, span, a, label, input, select, textarea, .section-title p, .team-role, .founder-bio, .value-card p, .mission-card p, .vision-card p {
    color: var(--text-light) !important;
}

.founder-stats-row {
    display: flex;
    gap: 1.2rem;
    margin: 1.2rem 0 1.2rem 0;
    justify-content: flex-start;
}

.founder-stat-card {
    background: rgba(255,255,255,0.18);
    color: var(--primary-color);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(10,17,40,0.07);
    padding: 1rem 1.2rem;
    min-width: 120px;
    max-width: 120px;
    width: 120px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--gold-color);
    backdrop-filter: blur(2px);
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 0.15rem;
}

.stat-label {
    font-size: 0.92rem;
    color: #fff;
    opacity: 1;
    font-weight: 500;
}

@media (max-width: 768px) {
    .founder-stats-row {
        flex-direction: column;
        gap: 0.7rem;
        align-items: flex-start;
    }
    .founder-stat-card {
        width: 100%;
        min-width: unset;
        max-width: unset;
        padding: 0.8rem 1rem;
    }
}

.footer-logo {
    width: 64px !important;
    height: 64px !important;
    object-fit: contain;
    margin-bottom: var(--spacing-sm) !important;
} 