/* ABOUT SECTION */
.about {
    padding: 80px 20px;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.about .section-title {
    font-size: 2.8rem;
    color: #d4af37;
    /* gold */
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    /* light slate */
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}

/* TEAM SECTION */
.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.team-title {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.team-member {
    background: #1e293b;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4af37;
    margin-bottom: 15px;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        padding: 20px;
    }
}

/* =========================
   ABOUT – PILLARS
========================= */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.pillar {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 30px;
    border-radius: 14px;
}

.pillar h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.values-list {
    padding-left: 18px;
}

.values-list li {
    margin-bottom: 10px;
    color: #d1d5db;
}

/* =========================
   SERVICES OVERVIEW
========================= */
.about-services {
    margin: 70px 0;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #334155;
    color: #e5e7eb;
}

/* =========================
   WHY CHOOSE US
========================= */
.why-choose {
    margin: 80px 0;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #020617;
    border: 1px solid #1e293b;
    padding: 35px 25px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.why-card i {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.why-card h4 {
    margin-bottom: 10px;
    color: #fff;
}

.why-card p {
    color: #cbd5f5;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================
   CTA BUTTONS
========================= */
.why-cta {
    margin-top: 50px;
}

.btn-primary {
    display: inline-block;
    background: #FFD700;
    color: #0f172a;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    margin: 10px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    margin: 10px;
}

.btn-primary:hover,
.btn-outline:hover {
    opacity: 0.85;
}

/* =========================
   MISSION / VISION / VALUES
========================= */
.about-pillars {
    margin: 40px 0;
    /* reduced from 80px */
}

.about-pillars .section-subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    /* matches Why Choose Us spacing */
}

.pillar-item {
    max-width: 420px;
}

.pillar-item i {
    font-size: 2.2rem;
    color: #FFD700;
    margin-bottom: 14px;
}

.pillar-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.pillar-item p {
    color: #cbd5f5;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Core values list */
.values-list {
    list-style: none;
    padding: 0;
    margin-top: 6px;
}

.values-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #cbd5f5;
}

.values-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 0.8rem;
}