/* MAIN */
.akpro {
    padding: 100px 40px;
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
}

.akpro-container {
    max-width: 1200px;
    margin: auto;
}

/* ================= ABOUT ================= */
.akpro-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}

.akpro-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.akpro-img img:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(0,0,0,0.2);
}

.akpro-content h1 {
    font-size: 34px;
    font-weight: 700;
}

.akpro-line {
    display: block;
    width: 60px;
    height: 4px;
    background: #ff5a00;
    margin: 12px 0 20px;
}

.akpro-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.akpro-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg,#ff5a00,#ff7b00);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.akpro-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,90,0,0.4);
}

/* ================= SERVICES ================= */
.akpro-services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    position: relative;
    padding-bottom: 16px;
}

.akpro-services h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ff5a00;
    border-radius: 4px;
    margin: 10px auto 0;
}

.akpro-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.akpro-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid transparent;
}

.akpro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(255,90,0,0.16);
    border-color: rgba(255,90,0,0.15);
}

.akpro-card.active {
    background: linear-gradient(135deg,#ff5a00,#ff7b00);
    color: #fff;
}

.akpro-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.akpro-card p {
    font-size: 14px;
}

/* ================= CTA ================= */
.akpro-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg,#1e1e35,#2c2c54);
    color: #fff;
    border-radius: 20px;
}

.akpro-cta h3 {
    font-size: 26px;
}

.akpro-cta p {
    margin: 10px 0 20px;
    color: #ddd;
}

.akpro-cta a {
    padding: 12px 30px;
    background: #ff5a00;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .akpro-about {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .akpro-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px){
    .akpro-grid {
        grid-template-columns: 1fr;
    }

    .akpro-content h1 {
        font-size: 24px;
    }
}

.akpro-extra {
    margin-bottom: 60px;
}

.akpro-extra h2 {
    font-size: 26px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 14px;
}

.akpro-extra h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ff5a00;
    border-radius: 4px;
    margin-top: 10px;
}

.akpro-extra p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* FAQ */
.akpro-faq {
    margin-top: 70px;
}

.akpro-faq h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 16px;
}

.akpro-faq h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ff5a00;
    border-radius: 4px;
    margin: 10px auto 0;
}

.akpro-faq-item {
    background: #fff;
    padding: 20px 20px 20px 24px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 3px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.akpro-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(255,90,0,0.12);
    border-left-color: #ff5a00;
}

.akpro-faq-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.akpro-faq-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ================= ARTICLE: TABLE OF CONTENTS ================= */
.akpro-toc {
    background: #fff;
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 40px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    border-left: 3px solid #ff5a00;
}

.akpro-toc h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.akpro-toc ol {
    margin: 0;
    padding-left: 20px;
}

.akpro-toc li {
    font-size: 14.5px;
    margin-bottom: 8px;
}

.akpro-toc a {
    color: #444;
    text-decoration: none;
    transition: color 0.25s ease;
}

.akpro-toc a:hover {
    color: #ff5a00;
    text-decoration: underline;
}

/* ================= ARTICLE: AUTHOR BOX ================= */
.akpro-author {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-top: 60px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.akpro-author img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.akpro-author h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.akpro-author p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ================= ARTICLE: SOCIAL SHARE ================= */
.akpro-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.akpro-share span {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.akpro-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.akpro-share a:hover {
    transform: translateY(-3px);
    background: #ff5a00;
    color: #fff;
}

/* ================= ARTICLE: RELATED ARTICLES ================= */
.akpro-related {
    margin-top: 70px;
}

.akpro-related h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 16px;
}

.akpro-related h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #ff5a00;
    border-radius: 4px;
    margin: 10px auto 0;
}

.akpro-related-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.akpro-related-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.akpro-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(255,90,0,0.15);
}

.akpro-related-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.akpro-related-card h3 {
    font-size: 15px;
    padding: 14px 16px 16px;
    margin: 0;
}

@media(max-width:900px){
    .akpro-related-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:600px){
    .akpro-related-grid { grid-template-columns: 1fr; }
    .akpro-author { flex-direction: column; text-align: center; }
}