/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 120px 0 180px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.about-hero p {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    line-height: 1.8;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .badge-label {
    display: inline-block;
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-tosca);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Profile Section */
.profile-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-badge i {
    font-size: 1.5rem;
    color: var(--primary-tosca);
}

.profile-badge div h5 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-navy);
}

.profile-badge div p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Vision & Mission */
.vm-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-tosca), var(--primary-navy));
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-tosca);
    margin-bottom: 24px;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.vm-card p, .vm-card li {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.vm-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.vm-card ul li {
    margin-bottom: 10px;
    position: relative;
}

.vm-card ul li::marker {
    color: var(--primary-tosca);
    font-weight: bold;
}

/* Core Values */
.value-card {
    background: white;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.value-card:hover {
    border-color: var(--primary-tosca);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    background: var(--primary-tosca);
    transform: scale(1.1);
}

.value-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-box {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-tosca);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 8px;
}

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

/* Team Section */
.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}

.team-info {
    padding: 24px;
}

.team-info h5 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.team-info p {
    color: var(--primary-tosca);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-social a {
    color: var(--text-gray);
    margin: 0 6px;
    transition: color 0.3s;
}

.team-social a:hover {
    color: var(--primary-tosca);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.15);
}

.cta-section h2 {
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-cta {
    background: var(--primary-navy);
    color: white;
    padding: 14px 36px;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    background: var(--primary-tosca);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
}

/* WA Float */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s;
}
.wa-float:hover {
    transform: scale(1.1);
    color: white;
}


footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    padding-top: 120px; /* Space for CTA overlap */
}

@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.2rem; }
    .about-hero { padding: 100px 0 140px; }
    .stat-number { font-size: 2.2rem; }
    .cta-section { margin-bottom: 0; border-radius: 0; }
    footer { padding-top: 60px; }
}