/* ===== ABOUT US PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
}

/* Background bubble pattern removed for cleaner look */

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.company-logo {
    margin-bottom: 2rem;
}

.logo-large {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.about-text h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.company-vision {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light-gray);
    font-weight: 500;
    font-style: italic;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-gold);
}

.image-container {
    position: relative;
    background: none;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.team-image {
    width: 100%;
    height: auto;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
    transition: none;
    mix-blend-mode: normal;
}

.image-overlay {
    display: none;
}

.image-container:hover .team-image {
    transform: none;
}

.image-container:hover .image-overlay {
    opacity: 0;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.vm-card {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-warm);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--bg-darker);
}

.vm-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.mission-card ul {
    list-style: none;
    text-align: left;
}

.mission-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-gray);
}

.mission-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Core Values Section */
.core-values {
    padding: 6rem 0;
    background: var(--gradient-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--bg-darker);
}

.value-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-text h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-gray);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.point-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-darker);
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-bg);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--gradient-warm);
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .about-hero-content {
        gap: 2rem;
    }

    .about-text h1 {
        font-size: 2.5rem;
    }

    .company-vision {
        font-size: 1.1rem;
        padding-left: 0.8rem;
    }

    .vm-card {
        padding: 2rem;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .value-card {
        padding: 2rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .why-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 5rem 0 3rem;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .company-description,
    .company-vision {
        font-size: 1rem;
    }

    .vm-card {
        padding: 1.5rem;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .why-point {
        gap: 1rem;
    }

    .point-number {
        width: 40px;
        height: 40px;
    }
}

/* ===== LIGHT MODE ADJUSTMENTS ===== */
[data-theme="light"] .about-text h1 {
    background: linear-gradient(135deg, #2c2c2c 0%, #8B5A3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .company-description {
    color: var(--text-gray);
}

[data-theme="light"] .company-vision {
    color: var(--text-light-gray);
    border-left-color: var(--primary-color);
}

[data-theme="light"] .vm-card h3,
[data-theme="light"] .value-card h4,
[data-theme="light"] .why-text h2,
[data-theme="light"] .point-content h4,
[data-theme="light"] .cta-content h2 {
    color: var(--text-light-gray);
}

[data-theme="light"] .vm-card p,
[data-theme="light"] .value-card p,
[data-theme="light"] .point-content p,
[data-theme="light"] .mission-card li,
[data-theme="light"] .cta-content p {
    color: var(--text-gray);
}

[data-theme="light"] .why-text h2,
[data-theme="light"] .cta-content h2 {
    background: linear-gradient(135deg, #2c2c2c 0%, #8B5A3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Light mode - Remove all styling from team image */
[data-theme="light"] .image-container {
    background: none;
    border: none;
    box-shadow: none;
}

[data-theme="light"] .team-image {
    background: none;
    border: none;
    box-shadow: none;
    mix-blend-mode: normal;
}

/* Ensure theme toggle button works properly on About Us page */
.theme-toggle {
    position: fixed !important;
    top: 50% !important;
    right: 2rem !important;
    transform: translateY(-50%) !important;
    z-index: 1001 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
