/* =============================================================
   About Us Page – Mobile-First, Responsive
   ============================================================= */

/* ── Breadcrumb ─────────────────────────────────────────────── */
.about-breadcrumb {
    font-size: 0.87rem;
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}
.about-breadcrumb .breadcrumb-item a {
    color: var(--veye-green);
    text-decoration: none;
    font-weight: 500;
}
.about-breadcrumb .breadcrumb-item.active {
    color: #6b7b8d;
}

/* ── Shared Section Utilities ───────────────────────────────── */
.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--veye-green);
    margin-bottom: 10px;
}
.about-section-label i {
    font-size: 0.85rem;
}
.about-section-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 14px;
    line-height: 1.25;
}
.about-section-desc {
    font-size: 0.92rem;
    color: #6b7b8d;
    line-height: 1.65;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================
   Hero Section
   ============================================================= */
.about-hero-section {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1400&q=80') center/cover no-repeat;
    z-index: 0;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 30, 50, 0.88) 0%, rgba(18, 37, 62, 0.92) 100%);
    z-index: 1;
}
.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 0 48px;
    max-width: 680px;
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--veye-green);
    background: rgba(27, 176, 135, 0.12);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.about-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.15;
}
.about-hero-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0;
}

/* =============================================================
   Introduction Section
   ============================================================= */
.about-intro-section {
    padding: 48px 0;
    background: #fff;
}
.about-intro-content .about-section-label {
    display: block;
    margin-bottom: 8px;
}
.about-intro-text {
    font-size: 0.92rem;
    color: #55636f;
    line-height: 1.7;
    margin-bottom: 12px;
}
.about-intro-text:last-child {
    margin-bottom: 0;
}
.about-intro-visual {
    display: flex;
    justify-content: center;
}
.about-intro-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 360px;
}
.about-intro-icon-box {
    background: #f8f9fb;
    border-radius: var(--card-radius);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border: 1.5px solid #eef1f5;
}
.about-intro-icon-box:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
    border-color: rgba(27, 176, 135, 0.25);
}
.about-intro-icon-box i {
    font-size: 1.6rem;
    color: var(--veye-green);
}
.about-intro-icon-box span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* =============================================================
   Mission & Vision Section
   ============================================================= */
.about-mv-section {
    padding: 48px 0;
    background: #f8f9fb;
}
.about-mv-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 36px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}
.about-mv-card:hover {
    box-shadow: var(--card-shadow-hover);
}
.about-mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.about-mission-card::before {
    background: linear-gradient(90deg, var(--veye-green), #43e97b);
}
.about-vision-card::before {
    background: linear-gradient(90deg, #667eea, #764ba2);
}
.about-mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.about-mission-card .about-mv-icon {
    background: rgba(27, 176, 135, 0.1);
}
.about-mission-card .about-mv-icon i {
    font-size: 1.4rem;
    color: var(--veye-green);
}
.about-vision-card .about-mv-icon {
    background: rgba(102, 126, 234, 0.1);
}
.about-vision-card .about-mv-icon i {
    font-size: 1.4rem;
    color: #667eea;
}
.about-mv-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.about-mv-text {
    font-size: 0.9rem;
    color: #55636f;
    line-height: 1.65;
    margin-bottom: 10px;
}
.about-mv-text:last-child {
    margin-bottom: 0;
}

/* =============================================================
   Team Section
   ============================================================= */
.about-team-section {
    padding: 56px 0;
    background: #fff;
}
.about-team-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 40px 28px 32px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.about-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--veye-green), #43e97b, var(--veye-green));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.about-team-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-6px);
}
.about-team-card:hover::before {
    opacity: 1;
}

/* Image Wrapper */
.about-team-img-wrap {
    width: 110px;
    height: 110px;
    position: relative;
    margin: 0 auto 22px;
}
.about-team-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(27, 176, 135, 0.18);
}
.about-team-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--veye-green), #15956e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(27, 176, 135, 0.18);
}
.about-team-img-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(27, 176, 135, 0.25);
    z-index: 1;
    animation: teamRingSpin 20s linear infinite;
}
@keyframes teamRingSpin {
    to { transform: rotate(360deg); }
}
.about-team-card:hover .about-team-img-ring {
    border-color: rgba(27, 176, 135, 0.5);
}

.about-team-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 6px;
}
.about-team-role {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--veye-green);
    display: inline-block;
    background: rgba(27, 176, 135, 0.08);
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-team-bio {
    font-size: 0.84rem;
    color: #6b7b8d;
    line-height: 1.6;
    margin: 14px 0 0;
}
.about-team-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.about-team-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7b8d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.about-team-social:hover {
    background: var(--veye-green);
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================================
   Core Values Section
   ============================================================= */
.about-values-section {
    padding: 56px 0;
    background: #f8f9fb;
}
.about-value-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
    overflow: hidden;
}
.about-value-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-3px);
}

/* Background Shape */
.about-value-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.about-value-card:hover .about-value-bg-shape {
    opacity: 1;
}
.about-value-shape-1 { color: var(--veye-green); }
.about-value-shape-2 { color: #667eea; }
.about-value-shape-3 { color: #f5576c; }
.about-value-shape-4 { color: #4facfe; }
.about-value-bg-shape svg {
    width: 100%;
    height: 100%;
}

/* Number Badge */
.about-value-num {
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(14, 30, 50, 0.04);
    z-index: 0;
    user-select: none;
    transition: color 0.3s ease;
}
.about-value-card:hover .about-value-num {
    color: rgba(14, 30, 50, 0.07);
}
.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.about-value-icon i {
    font-size: 1.4rem;
    color: #fff;
}
.about-value-gradient-1 {
    background: linear-gradient(135deg, var(--veye-green), #15956e);
}
.about-value-gradient-2 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}
.about-value-gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}
.about-value-gradient-4 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.about-value-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.about-value-desc {
    font-size: 0.85rem;
    color: #6b7b8d;
    line-height: 1.55;
    margin: 0;
}

/* =============================================================
   CTA / Commitment Section
   ============================================================= */
.about-cta-section {
    padding: 56px 0 64px;
    background: #fff;
}
.about-cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--card-radius);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(27, 176, 135, 0.08);
    border-radius: 50%;
}
.about-cta-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(27, 176, 135, 0.06);
    border-radius: 50%;
}
.about-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(27, 176, 135, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.about-cta-icon i {
    font-size: 1.7rem;
    color: var(--veye-green);
}
.about-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.about-cta-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}
.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.about-cta-btn-primary {
    background: var(--veye-green);
    color: #fff;
    border: 2px solid var(--veye-green);
}
.about-cta-btn-primary:hover {
    background: #15956e;
    border-color: #15956e;
    color: #fff;
}
.about-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.about-cta-btn-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* =============================================================
   Responsive – Tablet (768px+)
   ============================================================= */
@media (min-width: 768px) {
    .about-hero-content {
        padding: 72px 0 60px;
    }
    .about-hero-title {
        font-size: 2.5rem;
    }
    .about-hero-lead {
        font-size: 1.08rem;
    }
    .about-section-heading {
        font-size: 1.8rem;
    }
    .about-intro-section {
        padding: 60px 0;
    }
    .about-mv-section {
        padding: 60px 0;
    }
    .about-team-section {
        padding: 64px 0;
    }
    .about-values-section {
        padding: 64px 0;
    }
    .about-cta-card {
        padding: 56px 48px;
    }
    .about-cta-title {
        font-size: 1.7rem;
    }
}

/* =============================================================
   Responsive – Desktop (992px+)
   ============================================================= */
@media (min-width: 992px) {
    .about-hero-section {
        min-height: 360px;
    }
    .about-hero-content {
        padding: 88px 0 72px;
    }
    .about-hero-title {
        font-size: 2.8rem;
    }
    .about-hero-lead {
        font-size: 1.12rem;
    }
    .about-section-heading {
        font-size: 2rem;
    }
    .about-intro-section {
        padding: 72px 0;
    }
    .about-mv-section {
        padding: 72px 0;
    }
    .about-mv-card {
        padding: 40px 36px;
    }
    .about-cta-card {
        padding: 64px 60px;
    }
    .about-cta-title {
        font-size: 1.9rem;
    }
}

/* =============================================================
   Responsive – Large Desktop (1200px+)
   ============================================================= */
@media (min-width: 1200px) {
    .about-hero-title {
        font-size: 3rem;
    }
}

/* =============================================================
   Responsive – Small (< 576px)
   ============================================================= */
@media (max-width: 575.98px) {
    .about-hero-content {
        padding: 40px 0 36px;
    }
    .about-hero-title {
        font-size: 1.5rem;
    }
    .about-hero-lead {
        font-size: 0.9rem;
    }
    .about-hero-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    .about-section-heading {
        font-size: 1.35rem;
    }
    .about-intro-section {
        padding: 36px 0;
    }
    .about-intro-icon-grid {
        gap: 10px;
    }
    .about-intro-icon-box {
        padding: 16px 12px;
    }
    .about-intro-icon-box i {
        font-size: 1.3rem;
    }
    .about-intro-icon-box span {
        font-size: 0.72rem;
    }
    .about-mv-section {
        padding: 36px 0;
    }
    .about-mv-card {
        padding: 28px 22px;
    }
    .about-mv-title {
        font-size: 1.08rem;
    }
    .about-team-section {
        padding: 40px 0;
    }
    .about-team-card {
        padding: 28px 18px 24px;
    }
    .about-team-img-wrap {
        width: 88px;
        height: 88px;
        margin-bottom: 16px;
    }
    .about-team-initials {
        font-size: 1.4rem;
    }
    .about-team-bio {
        font-size: 0.82rem;
    }
    .about-values-section {
        padding: 40px 0;
    }
    .about-value-card {
        padding: 24px 18px;
    }
    .about-value-icon {
        width: 48px;
        height: 48px;
    }
    .about-value-icon i {
        font-size: 1.15rem;
    }
    .about-cta-section {
        padding: 40px 0 48px;
    }
    .about-cta-card {
        padding: 36px 22px;
    }
    .about-cta-icon {
        width: 52px;
        height: 52px;
    }
    .about-cta-icon i {
        font-size: 1.4rem;
    }
    .about-cta-title {
        font-size: 1.25rem;
    }
    .about-cta-desc {
        font-size: 0.88rem;
    }
    .about-cta-btn {
        padding: 10px 22px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}
