.section-bg-1 {
  /*  background:
        radial-gradient(circle at top left,
            rgba(13,110,253,.08) 0%,
            transparent 35%),
        linear-gradient(
            180deg,
            #b2b9c5 0%,
            #ffffff 100%
        );*/
}

.section-bg-2 {
   /* background:
        radial-gradient(circle at top left,
            rgba(13,110,253,.08) 0%,
            transparent 35%),
        linear-gradient(
            180deg,
            #fafcff 0%,
            #ffffff 100%
        );*/
}

@media (max-width: 768px) {
    .section-bg-1 {}
    .section-bg-2 {}
}

/* =========================
   COMPANY HEADER (PREMIUM CARD)
========================= */

.company-header {
    position: relative;
    /*padding: 60px 0;*/
}

/* GLASS CARD */
.company-card {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    transition: .3s ease;
}

.company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.company-card h3, .portfolio-header h3, .testimonial-header h3{
    font-size: 1.4rem !important;
    text-transform: uppercase !important;
}

/* LOGO */
.company-logo img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    padding: 4px;
}

/* NAME */
.company-name {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    color: var(--dark);
}

/* VERIFIED BADGE */
.company-name .verified-badge {
    position: absolute;
    top: -15px;
    right: -7px;
    font-size: 11px;
    color: #06b273;
    padding: 4px 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* SECTOR */
.company-sector {
    font-size: 14px;
    color: var(--text);
}

/* META */
.company-meta {
    font-size: 13px;
    color: var(--text);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* STARS CLEAN */
.stars i {
    color: #ffc107 !important;
    font-size: 16px;
}

/* RATING */
.rating-value {
    font-weight: 700;
    color: #ffc107 !important;
}

/* CONTACT COLUMN */
.contact-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

/* SOCIAL */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,0.6);
    color: var(--dark);
    transition: .3s;
}

.social-icons a:hover {
    background: var(--primary-solid);
    color: white;
    transform: translateY(-2px);
}

/* CTA BUTTON */
.btn-premium {
    background: linear-gradient(135deg,#ff385c,#ff7a59);
    color: white !important;
    border: none;
    font-weight: 600;
    border-radius: 999px;
    transition: .3s;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,56,92,0.25);
    background: linear-gradient(135deg,#ff7a59, #ff385c);
}

.save-favorite{
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #222;
    font-weight: 500;
    transition: all .25s ease;
}

.save-favorite:hover{
    background: #f8f8f8;
    transform: translateY(-1px);
}

.save-favorite i{
    font-size: 18px;
}


.btn-favorite{
    width: 54px;
    min-width: 54px;
    height: 54px;

    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;

    color: #dc3545;

    font-size: 20px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);

    transition: all .25s ease;
}

.btn-favorite:hover{
    background: #dc3545;
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 14px 30px rgba(220,53,69,0.25);
}

.btn-favorite.active{
    background: #dc3545;
    color: #fff;
}

.btn-favorite i{
    transition: transform .2s ease;
}

.btn-favorite:hover i{
    transform: scale(1.15);
}
/* NO LOGO */
.no-logo {
    width: 85px;
    height: 85px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f3f4f6;
    border-radius:16px;
    color:#9ca3af;
    font-size:28px;
}

/* =========================
   MINI STATS
========================= */
.mini-stats {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.mini-stats div {
    flex: 1;
    background: #f8fafc;
    padding: 12px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.mini-stats strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
}

    .activity-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,107,90,.12);

    color: #495057 !important;
    font-size: 13px;
    font-weight: 500;

    transition: all .25s ease;

    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.activity-badge i{
    width:20px;
    height:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background: rgba(255,109,90,.12);

    color:#ff6d5a;
}

.activity-badge:hover{
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        rgba(255,109,90,.08),
        rgba(255,140,120,.08)
    );

    border-color: rgba(255,109,90,.25);

    box-shadow: 0 8px 20px rgba(255,109,90,.12);

    color: #ff6d5a !important;
}

.activity-badge.active{
    background: linear-gradient(135deg,#ff6d5a,#ff8e79);

    color: #fff !important;

    border-color: transparent;

    box-shadow: 0 10px 25px rgba(255,109,90,.25);
}

.activity-badge.active i{
    color: #fff;
}


