/* SECTION */
.akcta-section {
    padding: 60px 20px;
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.akcta-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* CARD */
.akcta-card {
    flex: 1;
    border-radius: 60px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: 0.4s;
    min-height: 90px;
}

/* GRADIENT BORDER */
.akcta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(270deg,#ff5a00,#ff8c00,#ff5a00);
    background-size: 300% 300%;
    animation: borderMove 6s ease infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* BORDER ANIMATION */
@keyframes borderMove {
    0% { background-position: 0% }
    50% { background-position: 100% }
    100% { background-position: 0% }
}

/* HOVER */
.akcta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* LEFT */
.akcta-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

/* ICON */
.akcta-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: #1e1e35;
    color: #ff8c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    animation: pulse 2s infinite;
}

/* ICON PULSE */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,140,0,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255,140,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,140,0,0); }
}

/* TEXT */
.akcta-left p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.akcta-left h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 2px 0 0;
    word-break: break-word;
}

/* BUTTON */
.akcta-btn {
    padding: 12px 26px;
    border-radius: 30px;
    background: linear-gradient(90deg,#ff5a00,#ff8c00);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

/* BUTTON SHIMMER */
.akcta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
    transition: 0.5s;
}

.akcta-btn:hover::after {
    left: 100%;
}

/* ========================= */
/* 📱 TABLET (≤ 1024px) */
/* ========================= */
@media (max-width: 1024px) {
    .akcta-container {
        gap: 20px;
    }

    .akcta-card {
        padding: 18px 22px;
        border-radius: 40px;
    }

    .akcta-left h4 {
        font-size: 16px;
    }

    .akcta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ========================= */
/* 📱 MOBILE (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {
    .akcta-container {
        flex-direction: column;
        gap: 18px;
    }

    .akcta-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        border-radius: 20px;
        padding: 18px;
    }

    .akcta-left {
        width: 100%;
    }

    .akcta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================= */
/* 📱 SMALL MOBILE (≤ 480px) */
/* ========================= */
@media (max-width: 480px) {
    .akcta-section {
        padding: 40px 15px;
    }

    .akcta-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .akcta-left h4 {
        font-size: 15px;
    }

    .akcta-left p {
        font-size: 12px;
    }

    .akcta-btn {
        padding: 10px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .akcta-container {
        flex-direction: column;
        gap: 18px;
    }

    .akcta-card {
        flex-direction: column;
        align-items: stretch; /* IMPORTANT */
        gap: 15px;
        border-radius: 20px;
        padding: 18px;
    }

    .akcta-left {
        width: 100%;
    }

    .akcta-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box; /* 🔥 FIX */
    }
}