/* =========================================
   SERVICES SECTION — CLEAN & FIXED CSS
   ZoftwareBee Theme
========================================= */

.zb-services-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

/* ---- Header Label ---- */
.zb-srv-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.25);
    color: #fb923c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.zb-srv-line {
    width: 36px;
    height: 1.5px;
    background: #fb923c;
    display: inline-block;
}

.zb-srv-main-title {
    font-size: 44px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin: 0;
}

/* ---- Base Card ---- */
.zb-srv-card {
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Diagonal pattern — hidden by default, shows on hover */
.zb-srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 10px);
    border-radius: 0 20px 0 0;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.35s ease;
}

/* ---- HOVER: Full orange like featured ---- */
.zb-srv-card:hover {
    background: linear-gradient(145deg, #fb923c 0%, #ea580c 55%, #c2410c 100%);
    border-color: transparent;
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(251, 146, 60, 0.42);
}

.zb-srv-card:hover::before {
    opacity: 1;
}

/* ---- Featured Card (always orange) ---- */
.zb-srv-featured {
    background: linear-gradient(145deg, #fb923c 0%, #ea580c 55%, #c2410c 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 24px 55px rgba(251, 146, 60, 0.42) !important;
    transform: translateY(-14px);
}

.zb-srv-featured::before {
    opacity: 1 !important;
}

.zb-srv-featured:hover {
    transform: translateY(-22px) !important;
    box-shadow: 0 36px 65px rgba(251, 146, 60, 0.52) !important;
}

/* ---- Icon Wrap ---- */
.zb-srv-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(251, 146, 60, 0.08);
    border: 1px solid rgba(251, 146, 60, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease;
}

/* Icon wrap on hover & featured: white translucent box */
.zb-srv-card:hover .zb-srv-icon-wrap,
.zb-srv-featured .zb-srv-icon-wrap {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

/* ---- FontAwesome Icon ---- */
.zb-srv-fa-icon {
    font-size: 30px;
    color: #fb923c;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease, transform 0.3s ease;
}

/* Icon white on hover & featured */
.zb-srv-card:hover .zb-srv-fa-icon,
.zb-srv-featured .zb-srv-fa-icon {
    color: #ffffff;
    transform: scale(1.12);
}

/* ---- Card Heading ---- */
.zb-srv-card .cards-heading {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}

/* Heading white on hover & featured */
.zb-srv-card:hover .cards-heading,
.zb-srv-featured .cards-heading {
    color: #ffffff;
}

/* ---- Card Description ---- */
.zb-srv-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 24px;
    flex: 1;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}

/* Description white on hover & featured */
.zb-srv-card:hover p,
.zb-srv-featured p {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Read More ---- */
.zb-srv-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease, gap 0.3s ease;
}

.zb-srv-card:hover .zb-srv-read-more,
.zb-srv-featured .zb-srv-read-more {
    color: #ffffff;
}

.zb-rm-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.zb-srv-read-more:hover .zb-rm-arrow {
    transform: translateX(5px);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .zb-srv-main-title {
        font-size: 34px;
    }

    .zb-srv-featured {
        transform: none;
    }

    .zb-srv-featured:hover {
        transform: translateY(-8px) !important;
    }
}

@media (max-width: 767px) {
    .zb-srv-main-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .zb-services-section {
        padding: 60px 0;
    }

    .zb-srv-main-title {
        font-size: 24px;
    }

    .zb-srv-card {
        padding: 28px 20px;
    }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */

.wcu-section {
    background: #f5f5f5;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Dot grid background */
.wcu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* --- Header --- */
.wcu-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.25);
    color: #fb923c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

/* Main section h2 (header title) */
.wcu-section>.container .text-center>h2 {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.wcu-desc {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.7 !important;
    max-width: 560px;
    margin: 0 auto !important;
}

/* --- Card --- */
.wcu-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    cursor: pointer;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(251, 146, 60, 0.15);
}

/* --- Image --- */
.wcu-img-wrap {
    width: 100%;
    height: 240px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.wcu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.wcu-card:hover .wcu-img-wrap img {
    transform: scale(1.06);
}

/* --- Orange Circle Icon (overlapping image & body) --- */
.wcu-icon-circle {
    width: 72px;
    height: 72px;
    font-size: 28px;
    color: #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -36px;
    /* pulls it up over the image */
    position: relative;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.4);
    border: 4px solid #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-card:hover .wcu-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 14px 32px rgba(251, 146, 60, 0.55);
}

/* img inside icon circle */
.wcu-icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* makes icon white */
    display: block;
}

/* --- Card Body --- */
.wcu-card-body {
    padding: 20px 28px 36px;
    text-align: center;
    width: 100%;
}

/* h2 inside card = card title */
.wcu-card-body h2 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 12px !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em !important;
    transition: color 0.3s ease;
}

.wcu-card:hover .wcu-card-body h2 {
    color: #fb923c !important;
}

/* p inside card = card description */
.wcu-card-body p {
    font-size: 13.5px !important;
    color: #64748b !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .wcu-section>.container .text-center>h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .wcu-section>.container .text-center>h2 {
        font-size: 26px;
    }

    .wcu-img-wrap {
        height: 210px;
    }
}

@media (max-width: 575px) {
    .wcu-section {
        padding: 60px 0;
    }

    .wcu-card-body {
        padding: 18px 20px 28px;
    }

    .wcu-card-body h2 {
        font-size: 16px !important;
    }
}

.zb-pricing-section {
    background: #f8fafc;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.zb-pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

/* Header */
.zb-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.25);
    color: #fb923c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.zb-price-title {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 40px;
}

/* ── TABS ── */
.zb-price-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.zb-tab-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.zb-tab-btn:hover {
    border-color: rgba(251, 146, 60, 0.4);
    color: #fb923c;
    background: rgba(251, 146, 60, 0.05);
}

.zb-tab-btn.active {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.35);
}

/* ── PANELS ── */
.zb-tab-panels {
    position: relative;
}

.zb-tab-panel {
    display: none;
    animation: fadeInUp 0.35s ease;
}

.zb-tab-panel.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── BASE CARD ── */
.zb-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 40rem;
}

.zb-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(251, 146, 60, 0.12);
    border-color: rgba(251, 146, 60, 0.35);
}

/* Featured */
.zb-price-featured {
    border: 2px solid #fb923c !important;
    box-shadow: 0 16px 48px rgba(251, 146, 60, 0.2) !important;
    transform: translateY(-12px);
}

.zb-price-featured:hover {
    transform: translateY(-20px) !important;
    box-shadow: 0 32px 64px rgba(251, 146, 60, 0.3) !important;
}

/* Best badge */
.zb-best-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 20px;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    z-index: 5;
    margin: 0;
}

/* Card top */
.zb-price-top {
    padding: 36px 32px 24px;
}

.zb-plan-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
}

.zb-plan-tagline {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 18px;
    line-height: 1.5;
}

/* Price row */
.zb-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.zb-price-amount {
    font-size: 50px;
    font-weight: 900;
    color: #fb923c;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.03em;
}

.zb-price-per {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    margin: 0;
}

/* Discount row */
.zb-discount-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.zb-off-badge {
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.25);
    color: #fb923c;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.zb-orig-price {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    text-decoration: line-through;
}

/* Buttons */
.zb-price-btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.zb-btn-outline {
    background: transparent;
    border: 2px solid #fb923c;
    color: #fb923c;
}

.zb-btn-outline:hover {
    background: #fb923c;
    color: #fff;
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.3);
}

.zb-btn-solid {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.35);
}

.zb-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(251, 146, 60, 0.45);
    color: #fff;
}

/* Features */
.zb-price-features {
    padding: 20px 32px 28px;
    border-top: 1px solid #f1f5f9;
}

.zb-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #475569;
    margin: 0 0 12px;
    line-height: 1.4;
}

.zb-feat-item:last-child {
    margin-bottom: 0;
}

.zb-feat-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(251, 146, 60, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
    .zb-price-title {
        font-size: 32px;
    }

    .zb-price-featured {
        transform: none;
    }

    .zb-price-featured:hover {
        transform: translateY(-8px) !important;
    }
}

@media (max-width: 767px) {
    .zb-price-title {
        font-size: 26px;
    }

    .zb-price-amount {
        font-size: 40px;
    }

    .zb-price-tabs {
        gap: 8px;
    }

    .zb-tab-btn {
        font-size: 12px;
        padding: 9px 16px;
    }
}

@media (max-width: 575px) {
    .zb-pricing-section {
        padding: 60px 0;
    }

    .zb-price-top {
        padding: 28px 20px 18px;
    }

    .zb-price-features {
        padding: 18px 20px 24px;
    }
}