/* ===== About Page Styles ===== */

/* Breadcrumb */
.breadcrumb-bar {
    background: #f5f5f5;
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}
.breadcrumb-bar a { color: var(--teal); font-weight: 600; }
.breadcrumb-bar a:hover { color: var(--primary); }
.breadcrumb-bar span { margin: 0 6px; color: #ccc; }

/* Hero Banner */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 50px 0 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(0, 178, 178, 0.08);
}
.about-hero-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}
.hero-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 24px;
    border: 1px solid rgba(255,255,255,0.15);
}
.logo-icon-lg {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
}
.logo-text-lg {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}
.about-hero-text h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(90deg, #fff, #00e5e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-hero-text h2 {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.about-stats.animate {
    opacity: 1;
    transform: translateY(0);
}
.stat-item {
    text-align: center;
    padding: 20px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}
.stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}
.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Sections */
.about-section {
    padding: 50px 0;
}
.about-section:nth-child(even) {
    background: #f9f9f9;
}
.section-header {
    text-align: center;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
.establishment {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 12px;
}

/* About Row (text + image) */
.about-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-row.reverse {
    grid-template-columns: 1.2fr 1fr;
    direction: rtl;
}
.about-row.reverse > * {
    direction: ltr;
}
.about-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px;
}
.about-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
}
.about-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 10px;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Brand pills */
.brand-pills {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--teal), #009999);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,178,178,0.3);
}
.pill i {
    font-size: 16px;
}

/* Vision list */
.vision-list {
    list-style: none;
    padding: 0;
}
.vision-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}
.vision-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gradient);
}

/* Mission highlight */
.mission-highlight {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin-bottom: 16px !important;
    font-style: italic;
}

/* Core values list */
.core-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}
.core-list li {
    padding: 10px 14px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 8px;
    border-left: 3px solid var(--teal);
    font-size: 14px;
    color: var(--text);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Business Areas */
.about-business {
    padding: 50px 0 60px;
}
.business-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}
.business-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}
.biz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.biz-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.biz-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.biz-card img {
    width: 160px;
    height: 130px;
    object-fit: cover;
    flex-shrink: 0;
}
.biz-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.biz-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.biz-card-body p {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .biz-grid { grid-template-columns: 1fr; }
    .about-row, .about-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}
@media (max-width: 768px) {
    .about-hero-inner { flex-direction: column; text-align: center; }
    .about-hero-text h1 { font-size: 22px; }
    .about-hero-text h2 { font-size: 15px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-number { font-size: 24px; }
    .brand-pills { flex-direction: column; align-items: center; }
    .biz-card { flex-direction: column; }
    .biz-card img { width: 100%; height: 180px; }
    .section-header h2 { font-size: 22px; }
    .about-content h3 { font-size: 18px; }
}
@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .stat-item { padding: 14px 8px; }
    .stat-number { font-size: 20px; }
}
