/* ========================================
   BLOOMIFY SOURCING - ABOUT PAGE
   ======================================== */

/* ---- PAGE HERO ---- */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 1rem 0;
    line-height: 1.15;
}

.page-hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

/* ---- FOUNDER SECTION ---- */
.founder-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-placeholder {
    width: 320px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(108, 99, 255, 0.3);
    position: relative;
    flex-shrink: 0;
}

.founder-real-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.founder-badge-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.8rem 1.2rem;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.founder-badge-card:first-of-type {
    bottom: -20px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

.founder-badge-card.card-2 {
    top: -20px;
    left: -20px;
    animation: float 5s ease-in-out infinite reverse;
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ---- FOUNDER CONTENT ---- */
.founder-content .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.founder-content .section-title {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.founder-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.f-stat {
    text-align: center;
}

.f-stat-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.f-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ---- EXPERIENCE SECTION ---- */
.experience-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.experience-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.experience-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.exp-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.exp-icon {
    width: 46px;
    height: 46px;
    background: var(--color-purple-dim);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-purple);
    flex-shrink: 0;
    transition: var(--transition);
}

.experience-card:hover .exp-icon {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

.exp-title {
    flex: 1;
    min-width: 0;
}

.exp-title h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.exp-role {
    color: var(--color-purple);
    font-size: 0.78rem;
    font-weight: 500;
}

.exp-duration {
    background: var(--color-purple-dim);
    color: var(--color-purple);
    border: 1px solid rgba(108, 99, 255, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.exp-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.exp-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.exp-skills span {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--color-cyan);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
}

/* ========================================
   TEAM SECTION - PROFESSIONAL AVATARS
   ======================================== */
.team-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.team-card:hover {
    border-color: rgba(108, 99, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.15);
}

/* ---- TEAM AVATAR - BASE STYLES ---- */
.team-avatar {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    margin: 0 auto 1.5rem !important;
    overflow: hidden !important;
    position: relative !important;
    border: 3px solid rgba(108, 99, 255, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 0 5px rgba(108, 99, 255, 0.08) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* When showing photo */
.team-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: block !important;
}

/* ---- INITIALS AVATAR STYLES ---- */
.team-avatar.avatar-initials {
    overflow: hidden !important;
}

.team-avatar.avatar-initials span {
    color: white !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Gradient color variants */
.team-avatar.gradient-purple {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
}

.team-avatar.gradient-pink {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
}

.team-avatar.gradient-blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe) !important;
}

.team-avatar.gradient-green {
    background: linear-gradient(135deg, #43e97b, #38f9d7) !important;
}

.team-avatar.gradient-orange {
    background: linear-gradient(135deg, #fa709a, #fee140) !important;
}

/* Hover effects on avatars */
.team-card:hover .team-avatar {
    transform: scale(1.08) !important;
    border-color: transparent !important;
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4),
                0 0 0 8px rgba(108, 99, 255, 0.15) !important;
}

.team-card:hover .team-avatar img {
    transform: scale(1.1) !important;
}

.team-card:hover .team-avatar.avatar-initials span {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

/* Founder avatar special styling */
.team-avatar.founder-avatar {
    width: 140px !important;
    height: 140px !important;
    border: 3px solid #6c63ff !important;
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4),
                0 0 0 6px rgba(108, 99, 255, 0.15) !important;
}

/* Founder badge */
.team-avatar.founder-avatar::after {
    content: '⭐ FOUNDER';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6c63ff, #00d4ff);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
    z-index: 10;
    white-space: nowrap;
}

/* ---- TEAM TEXT ---- */
.team-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
}

.team-role {
    color: var(--color-purple);
    font-size: 0.78rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.8rem;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.83rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.team-skills span {
    background: var(--color-purple-dim);
    border: 1px solid rgba(108, 99, 255, 0.2);
    color: var(--color-purple);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.team-card:hover .team-skills span {
    background: rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.4);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.review-card.featured-review {
    border-color: rgba(108, 99, 255, 0.3);
    background: linear-gradient(135deg,
        rgba(108, 99, 255, 0.06),
        rgba(0, 212, 255, 0.03));
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    display: flex;
    gap: 0.15rem;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--color-cyan);
    font-weight: 500;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    color: white;
}

.review-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.review-info span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

.review-service {
    color: var(--color-purple) !important;
    font-weight: 500 !important;
}

/* Small flag for reviews */
.flag-small {
    display: inline-block !important;
    width: 18px !important;
    height: 13px !important;
    border-radius: 2px;
    background-size: cover !important;
    background-position: center !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    vertical-align: middle;
}

.fiverr-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.fiverr-link p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ---- VALUES SECTION ---- */
.values-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--color-purple-dim);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-purple);
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow);
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .experience-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .founder-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-image-placeholder {
        width: 280px;
        height: 340px;
    }

    .founder-badge-card:first-of-type {
        right: -10px;
        bottom: -10px;
    }

    .founder-badge-card.card-2 {
        left: -10px;
        top: -10px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fiverr-link {
        flex-direction: column;
        gap: 1rem;
    }

    .team-avatar {
        width: 100px !important;
        height: 100px !important;
    }

    .team-avatar.founder-avatar {
        width: 110px !important;
        height: 110px !important;
    }

    .team-avatar.avatar-initials span {
        font-size: 2rem !important;
    }

    .team-avatar.founder-avatar::after {
        font-size: 0.55rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .founder-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .founder-image-placeholder {
        width: 240px;
        height: 300px;
    }
}