/* =====================================================
   HelpStar — About Page Styles (Reference Design System)
   ===================================================== */

/* Hero Section */
.about-hero {
    background-color: #FAF8F5;
    padding: 4.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    left: -60px;
    top: -40px;
    width: 220px;
    height: 220px;
    border: 3px solid #00838F;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}

.about-hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1B2A4A;
    line-height: 1.2;
}

.about-hero-title span {
    color: #00838F;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: #00838F;
}

.about-hero-tagline {
    font-size: 0.95rem;
    color: #555555;
    letter-spacing: 0.02em;
}

.btn-book-now {
    background-color: #00838F !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 50rem !important;
    padding: 0.65rem 1.75rem !important;
    border: none;
    font-size: 0.88rem;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 131, 143, 0.25);
    cursor: pointer;
}
.btn-book-now:hover {
    background-color: #006064 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-phone-outline {
    background-color: #6A1B9A !important;
    color: #ffffff !important;
    font-weight: 700;
    border: none !important;
    border-radius: 50rem !important;
    padding: 0.65rem 1.75rem !important;
    font-size: 0.88rem;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(106, 27, 154, 0.25);
}
.btn-phone-outline:hover {
    background-color: #4A148C !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* All About Us Banner (Deep Navy Accent) */
.about-banner {
    background-color: #1B264F;
    padding: 4rem 0;
    color: #ffffff;
}

.about-banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.about-banner-divider {
    border-left: 2px solid rgba(255,255,255,0.25);
    padding-left: 2rem;
}

.about-banner-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #00B5AD;
}

.about-banner-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Mission Section */
.about-mission {
    background-color: #ffffff;
    padding: 5rem 0;
}

.about-mission-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1B2A4A;
}

.about-mission-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
}

/* Values Cards */
.about-value-card {
    background-color: #FAF8F5;
    border: 1px solid #E8E8E8;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    transition: transform 0.2s ease;
    height: 100%;
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.about-value-card .value-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #E0F2F1;
    color: #00838F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.about-value-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 0.5rem;
}
.about-value-card p {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Provider / Specialist Team Section (Matching Home Page) */
.about-team-card {
    background-color: #E0F2F1;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.about-team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-team-avatar-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #00838F;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
}

.about-team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2A4A;
    line-height: 1.3;
}

.about-team-creds {
    font-size: 0.88rem;
    color: #00838F;
    font-weight: 500;
    line-height: 1.4;
}
