/* GŁÓWNY KONTENER */
.aj-service-wrapper { background: #fff; padding: 40px 0; }
.aj-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; display: grid; grid-template-columns: 320px 1fr; gap: 50px; }

/* SIDEBAR (LEWA) */
.aj-sidebar { position: sticky; top: 100px; text-align: center; background: #fff; border: 1px solid #eee; border-radius: 15px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); height: fit-content; }
.aj-icon-circle { width: 80px; height: 80px; background: #f8fbff; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.aj-icon-circle .dashicons { font-size: 40px; color: #e67e22; width: 40px; height: 40px; }

.aj-price-box { background: #fff; border: 2px dashed #eee; border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.aj-label { font-size: 11px; font-weight: 700; color: #999; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.aj-price-val { font-size: 32px; font-weight: 900; color: #2c3e50; line-height: 1; }
.aj-price-unit { font-size: 13px; color: #7f8c8d; margin-top: 5px; }

.aj-btn-order { width: 100%; background: #2c3e50; color: #fff; padding: 15px; border: none; border-radius: 50px; font-weight: 800; cursor: pointer; transition: 0.3s; }
.aj-btn-order:hover { background: #e67e22; transform: translateY(-2px); }
.aj-guarantee { font-size: 11px; color: #bbb; margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* TREŚĆ (PRAWA) */
.aj-breadcrumbs { font-size: 11px; color: #999; text-transform: uppercase; margin-bottom: 15px; font-weight: 600; }
.aj-breadcrumbs a { color: #e67e22; text-decoration: none; }
.aj-title { font-size: 38px; font-weight: 900; text-transform: uppercase; color: #2c3e50; margin: 0 0 30px 0; line-height: 1.1; }

/* KONTAKT GRID */
.aj-contact-section { margin-top: 50px; background: #f8fbff; padding: 30px; border-radius: 15px; border: 1px solid #eef2f7; }
.aj-contact-section h3 { margin-top: 0; font-size: 18px; color: #2c3e50; }
.aj-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin-top: 20px; }
.aj-contact-card { background: #fff; padding: 15px; border-radius: 8px; border-left: 4px solid #e67e22; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.aj-contact-card.it-card { border-left-color: #3498db; }
.role { font-size: 10px; font-weight: 800; text-transform: uppercase; display: block; margin-bottom: 5px; }
.role.owner { color: #e67e22; }
.role.it { color: #3498db; }
.aj-contact-card a { font-size: 16px; font-weight: 800; color: #2c3e50; text-decoration: none; }

/* STYL TABEL (CENNIKÓW) - PANCERNY */
.table-wrapper { overflow-x: auto; margin: 30px 0; border-radius: 10px; border: 1px solid #eef2f7; }
.aj-price-table { width: 100%; min-width: 600px; border-collapse: collapse; font-family: 'Montserrat', sans-serif; font-size: 14px; }
.aj-price-table thead tr { background: #2c3e50; color: #fff; }
.aj-price-table th, .aj-price-table td { padding: 15px 20px; border-bottom: 1px solid #eee; text-align: left; }
.aj-price-table tbody tr:nth-of-type(even) { background: #f8fbff; }
.aj-price-table tbody tr:hover { background: #fff5eb; color: #2c3e50; }
.aj-price-table tbody tr:last-of-type { border-bottom: 3px solid #e67e22; }
.aj-price-col { font-weight: 700; color: #2c3e50; white-space: nowrap; }

/* MOBILE */
@media(max-width: 991px) {
    .aj-container { grid-template-columns: 1fr; }
    .aj-sidebar { position: static; margin-bottom: 30px; order: -1; } /* Sidebar nad treścią */
}
/* =========================================
   GRID KAFELKÓW NA STRONĘ GŁÓWNĄ
   ========================================= */

.aj-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.aj-service-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    position: relative;
    top: 0;
}

/* Efekt Hover (Unoszenie) */
.aj-service-card:hover {
    top: -10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #e67e22;
}

/* Ikona w kółku */
.aj-card-icon {
    width: 70px;
    height: 70px;
    background: #f8fbff;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.aj-card-icon .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #2c3e50;
}

.aj-service-card:hover .aj-card-icon {
    background: #e67e22;
}
.aj-service-card:hover .aj-card-icon .dashicons {
    color: #fff;
}

/* Tytuł */
.aj-card-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.aj-card-title a {
    color: #2c3e50;
    text-decoration: none;
}

/* Cena */
.aj-card-price {
    margin-bottom: 25px;
    color: #7f8c8d;
}
.aj-card-price .val {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #e67e22;
}
.aj-card-price small {
    font-size: 14px;
    font-weight: 600;
}
.aj-card-price .unit {
    font-size: 12px;
    text-transform: uppercase;
}

/* Przycisk */
.aj-card-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2c3e50;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
}

.aj-service-card:hover .aj-card-btn {
    background: #e67e22;
}