/* =====================================================
   CCSOL – BANK DETAILS PAGE
   Enterprise Premium Layout
===================================================== */

/* ===============================
   PAGE BASE
=================================*/
body.page-template-page-bank-details {
    background: #021924;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
}

/* ===============================
   CONTAINER
=================================*/
.ccsol-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===============================
   LOADING BAR
=================================*/
.ccsol-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0f172a;
    z-index: 9999;
}

.ccsol-loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,#00c6ff,#0072ff);
    transition: width .3s ease;
}

/* ===============================
   BREADCRUMB
=================================*/
.ccsol-breadcrumb {
    padding: 18px 0;
    font-size: 14px;
    color: #94a3b8;
}

.ccsol-breadcrumb a {
    color: #00c6ff;
    text-decoration: none;
}

.ccsol-breadcrumb span {
    margin: 0 8px;
}

/* ===============================
   HERO SECTION
=================================*/
.ccsol-bank-hero {
    background: linear-gradient(135deg,#021924,#063255);
    padding: 110px 0 90px;
    text-align: center;
}

.ccsol-bank-hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
}

.ccsol-bank-hero p {
    max-width: 720px;
    margin: auto;
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.7;
}

/* ===============================
   SECTION HEADER
=================================*/
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.section-header p {
    font-size: 16px;
    color: #94a3b8;
}

/* ===============================
   EXPLORE CCSOL SECTION
=================================*/
.company-explore {
    background: #0f172a;
    padding: 80px 0;
}

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

.explore-grid a {
    background: linear-gradient(145deg,#111827,#0f172a);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all .3s ease;
}

.explore-grid a:hover {
    transform: translateY(-6px);
    border-color: #00c6ff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.explore-grid i {
    font-size: 26px;
    margin-bottom: 12px;
    color: #00c6ff;
}

.explore-grid strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.explore-grid span {
    font-size: 13px;
    color: #94a3b8;
}

/* ===============================
   BANK DETAILS SECTION
=================================*/
.ccsol-bank-details {
    padding: 100px 0;
}

/* GRID */
.ccsol-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

/* CARD */
.ccsol-card {
    background: linear-gradient(145deg,#111827,#0f172a);
    padding: 45px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: all .35s ease;
}

.ccsol-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.ccsol-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ffffff;
}

/* LIST */
.ccsol-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ccsol-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #cbd5e1;
}

.ccsol-card ul li strong {
    color: #ffffff;
}

/* BUTTON AREA */
.bank-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* COPY BUTTON */
.bank-copy-btn {
    background: #00c6ff;
    color: #021924;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
}

.bank-copy-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

/* WHATSAPP BUTTON */
.bank-whatsapp-btn {
    background: #25D366;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.bank-whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* ===============================
   RECEIPT SECTION
=================================*/
.ccsol-bank-receipt {
    background: linear-gradient(135deg,#0a4d8c,#021924);
    padding: 110px 0;
    text-align: center;
}

.ccsol-bank-receipt h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.ccsol-bank-receipt p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    color: #cbd5e1;
}

.ccsol-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #00c6ff;
    color: #021924;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s ease;
}

.ccsol-btn:hover {
    background: #ffffff;
    transform: translateY(-4px);
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 1100px) {
    .explore-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

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

@media (max-width: 600px) {

    .ccsol-bank-hero h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .ccsol-card {
        padding: 30px;
    }

    .bank-actions {
        flex-direction: column;
    }

    .bank-copy-btn,
    .bank-whatsapp-btn {
        width: 100%;
        text-align: center;
    }
}
