/* ============================================
   About Us Page - Professional Secondary Page Design
   ============================================ */

/* About Header - Elegant & Understated */
.about-header {
    min-height: 55vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(32, 18, 7, 0.75)), 
                url('../img/tigers_nest_2.jpg') center/cover;
}

.about-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
}

/* Mission Section */
.mission-section {
    padding: 6rem 3rem;
    background: white;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mission-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.decorative-line-left {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin-bottom: 2rem;
}

.lead-paragraph {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
}

.mission-image {
    position: relative;
    padding: 2rem;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 15px;
    transform: translate(-15px, -15px);
    z-index: 0;
}

.mission-image img {
    
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
}

/* Approach Section */
.approach-section {
    padding: 6rem 3rem;
    background: linear-gradient(to bottom, var(--light) 0%, #ffffff 100%);
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
}

.approach-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.approach-text {
    margin: 2rem 0 3rem;
}

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Credentials Badges */
.credentials-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.badge-item:hover {
    border-left-color: var(--secondary);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.badge-text strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
}

.badge-text span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Visual Cards - Process Steps */
.approach-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.visual-card:hover {
    border-color: var(--secondary);
    transform: scale(1.03);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.visual-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

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

/* Values Section - New Design */
.values-section-new {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dfd0 50%, #f5f0e8 100%);
}

.values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.values-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card-new {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.value-card-new::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card-new:hover::before {
    transform: scaleX(1);
}

.value-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.featured-value {
    border: 2px solid var(--secondary);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(196, 30, 58, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.value-card-new:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.value-icon {
    font-size: 2.5rem;
}

.value-card-new:hover .value-icon {
    filter: brightness(0) invert(1);
}

.value-card-new h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card-new p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.value-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
}

/* Team Section */
.team-section {
    padding: 6rem 3rem;
    background: white;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.team-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.95), transparent);
    padding: 3rem 2rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
}

.team-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Promise List */
.promise-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text);
}

.promise-check {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* About CTA - Simplified for Secondary Page */
.about-cta {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--light) 0%, #e8dfd0 100%);
}

.cta-content-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.cta-content-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-content-box p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .mission-content,
    .approach-container,
    .team-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-image {
        text-align: center;
        padding: 1rem;
    }

    .image-decoration {
        transform: translate(-10px, -10px);
    }

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

    .team-stats {
        grid-template-columns: 1fr;
    }

    .team-image-wrapper img {
        height: 400px;
    }

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

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .credentials-badges {
        gap: 1rem;
    }

    .badge-item {
        padding: 1rem;
    }

    .approach-visual {
        gap: 1.5rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .card-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .cta-content-box {
        padding: 2.5rem 1.5rem;
    }
}
