/* =========================================================
   WEBBE BUSINESS - FLATSOME UX BUILDER
   ========================================================= */

.webbe-business-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 60% 20%,
            rgba(14,165,233,.16),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 0%,
            rgba(56,189,248,.12),
            transparent 30%
        ),
        #f8fafc;
}

.webbe-business-hero:before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        135deg,
        rgba(14,165,233,.12),
        rgba(99,102,241,.12)
    );
    filter: blur(70px);
    pointer-events: none;
}

.webbe-gradient-text {
    background: linear-gradient(
        90deg,
        #0284c7,
        #6366f1,
        #4f46e5
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.webbe-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border: 1px solid #bae6fd;
    background: #f0f9ff;
    border-radius: 999px;
    font-weight: 700;
}

.webbe-pulse {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,.5);
    animation: webbePulse 2s infinite;
}

@keyframes webbePulse {
    70% {
        box-shadow: 0 0 0 8px rgba(16,185,129,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16,185,129,0);
    }
}

.webbe-feature-pills .webbe-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.webbe-pills span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    box-shadow: 0 5px 20px rgba(15,23,42,.05);
    font-size: 13px;
    font-weight: 600;
}

.webbe-pills span:nth-child(1) i {
    color: #f59e0b;
}

.webbe-pills span:nth-child(2) i {
    color: #0284c7;
}

.webbe-pills span:nth-child(3) i {
    color: #10b981;
}

.webbe-btn-primary {
    background: linear-gradient(
        90deg,
        #0284c7,
        #0ea5e9,
        #6366f1
    ) !important;
    border: 0 !important;
    box-shadow: 0 15px 35px rgba(14,165,233,.25);
}

.webbe-btn-secondary {
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
}

.webbe-trust-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.webbe-avatar-group {
    display: flex;
}

.webbe-avatar-group img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -9px;
}

.webbe-avatar-group img:first-child {
    margin-left: 0;
}

.webbe-stars {
    color: #fbbf24;
    letter-spacing: 1px;
}

.webbe-stars strong {
    color: #0f172a;
    margin-left: 7px;
}

.webbe-trust-box p {
    margin: 3px 0 0;
    color: #64748b;
    font-size: 12px;
}


/* HERO MOCKUP */

.webbe-mockup {
    position: relative;
    padding: 25px;
}

.webbe-browser {
    position: relative;
    z-index: 2;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow:
        0 30px 80px rgba(15,23,42,.16);
    backdrop-filter: blur(15px);
    animation: webbeFloat 6s ease-in-out infinite;
}

@keyframes webbeFloat {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.webbe-browser-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.webbe-dots {
    display: flex;
    gap: 5px;
}

.webbe-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.webbe-dots span:nth-child(1) {
    background: #f87171;
}

.webbe-dots span:nth-child(2) {
    background: #fbbf24;
}

.webbe-dots span:nth-child(3) {
    background: #34d399;
}

.webbe-url {
    padding: 5px 10px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 10px;
}

.webbe-url i {
    color: #10b981;
}

.webbe-preview {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    border-radius: 18px;
}

.webbe-preview img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.webbe-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    background: linear-gradient(
        transparent,
        rgba(15,23,42,.85)
    );
}

.webbe-preview-overlay span {
    color: #7dd3fc;
    font-size: 11px;
    text-transform: uppercase;
}

.webbe-preview-overlay strong {
    font-size: 15px;
}

.webbe-stat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 14px;
}

.webbe-stat-grid div {
    padding: 13px 8px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.webbe-stat-grid span {
    display: block;
    font-size: 10px;
    color: #64748b;
}

.webbe-stat-grid strong {
    display: block;
    margin-top: 2px;
    font-size: 15px;
}

.webbe-stat-grid div:nth-child(1) strong {
    color: #10b981;
}

.webbe-stat-grid div:nth-child(2) strong {
    color: #0284c7;
}

.webbe-stat-grid div:nth-child(3) strong {
    color: #6366f1;
}

.webbe-floating {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border-radius: 17px;
    box-shadow: 0 20px 50px rgba(15,23,42,.15);
}

.webbe-floating-top {
    right: -20px;
    top: 0;
    background: #fff;
}

.webbe-floating-bottom {
    left: -20px;
    bottom: -10px;
    color: #fff;
    background: rgba(15,23,42,.92);
}

.webbe-floating > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ecfdf5;
    color: #059669;
}

.webbe-floating-bottom > i {
    background: rgba(14,165,233,.15);
    color: #38bdf8;
}

.webbe-floating span {
    display: block;
    color: #94a3b8;
    font-size: 10px;
}

.webbe-floating strong {
    display: block;
    font-size: 12px;
}


/* SECTION HEADINGS */

.webbe-section-heading {
    margin-bottom: 50px;
}

.webbe-section-heading h2 {
    margin: 12px 0;
    color: #0f172a;
    font-weight: 800;
    font-size: clamp(30px,4vw,44px);
    line-height: 1.2;
}

.webbe-section-heading p {
    color: #64748b;
    font-size: 16px;
}

.webbe-eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    color: #0369a1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* WHY US */

.webbe-feature-card {
    height: 100%;
    padding: 30px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all .3s ease;
}

.webbe-feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(15,23,42,.1);
}

.webbe-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 17px;
    color: #fff;
    font-size: 22px;
}

.webbe-icon-red {
    background: linear-gradient(135deg,#ef4444,#f59e0b);
}

.webbe-icon-blue {
    background: linear-gradient(135deg,#0284c7,#6366f1);
}

.webbe-icon-green {
    background: linear-gradient(135deg,#10b981,#0f766e);
}

.webbe-icon-purple {
    background: linear-gradient(135deg,#4f46e5,#9333ea);
}

.webbe-feature-card h3 {
    color: #0f172a;
    font-size: 19px;
    font-weight: 800;
}

.webbe-feature-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.7;
}


/* DARK SECTION */

.webbe-dark-section {
    position: relative;
    overflow: hidden;
}

.webbe-heading-dark h2 {
    color: #fff;
}

.webbe-heading-dark p {
    color: #94a3b8;
}

.webbe-heading-dark .webbe-eyebrow {
    background: rgba(14,165,233,.1);
    border-color: rgba(14,165,233,.25);
    color: #38bdf8;
}

.webbe-service-card {
    position: relative;
    height: 100%;
    padding: 32px;
    border: 1px solid #1e293b;
    border-radius: 25px;
    background: rgba(15,23,42,.8);
    transition: all .3s ease;
}

.webbe-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(14,165,233,.5);
}

.webbe-service-featured {
    border-color: rgba(14,165,233,.6);
    box-shadow: 0 0 45px rgba(14,165,233,.12);
}

.webbe-popular {
    position: absolute;
    top: -12px;
    right: 25px;
    padding: 5px 12px;
    border-radius: 99px;
    background: linear-gradient(90deg,#0ea5e9,#6366f1);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
}

.webbe-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: rgba(14,165,233,.12);
    color: #38bdf8;
    font-size: 20px;
}

.webbe-service-icon.webbe-green {
    color: #34d399;
    background: rgba(16,185,129,.12);
}

.webbe-service-card h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.webbe-service-card p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.7;
}

.webbe-service-card ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.webbe-service-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #cbd5e1;
    font-size: 12px;
}

.webbe-service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-weight: 800;
}

.webbe-service-card a {
    color: #38bdf8;
    font-size: 13px;
    font-weight: 700;
}


/* SEO SCORE */

.webbe-score-card {
    padding: 28px;
    border-radius: 25px;
    background: rgba(255,255,255,.85);
    border: 1px solid #fff;
    box-shadow: 0 25px 55px rgba(15,23,42,.1);
}

.webbe-score-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid #e2e8f0;
}

.webbe-score-head strong {
    color: #0f172a;
    font-size: 14px;
}

.webbe-score-head span {
    padding: 5px 9px;
    border-radius: 99px;
    background: #dcfce7;
    color: #15803d;
    font-size: 10px;
    font-weight: 800;
}

.webbe-progress > div {
    margin-bottom: 20px;
}

.webbe-progress label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    color: #334155;
    font-size: 11px;
    font-weight: 700;
}

.webbe-progress label strong {
    color: #0284c7;
}

.webbe-progress > div > div {
    height: 9px;
    overflow: hidden;
    border-radius: 99px;
    background: #e2e8f0;
}

.webbe-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,#0284c7,#6366f1);
}

.webbe-score-note {
    margin-top: 25px;
    padding: 15px;
    border-radius: 17px;
    background: #f0f9ff;
    color: #075985;
    font-size: 11px;
    line-height: 1.6;
}

.webbe-standard-content h2 {
    margin: 12px 0 20px;
    color: #0f172a;
    font-size: clamp(30px,4vw,42px);
    font-weight: 800;
    line-height: 1.2;
}

.webbe-standard-content > p {
    color: #64748b;
    line-height: 1.8;
}

.webbe-standard-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.webbe-standard-item > i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e0f2fe;
    color: #0284c7;
}

.webbe-standard-item h4 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 15px;
}

.webbe-standard-item p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.7;
}


/* PROCESS */

.webbe-process-card {
    position: relative;
    height: 100%;
    padding: 27px;
    border: 1px solid #e2e8f0;
    border-radius: 23px;
    background: #f8fafc;
    transition: all .3s ease;
}

.webbe-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.webbe-process-card > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 12px;
    background: #0284c7;
    color: #fff;
}

.webbe-step {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #dbeafe;
    font-size: 35px;
    font-weight: 900;
}

.webbe-process-card h3 {
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
}

.webbe-process-card p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.7;
}


/* PORTFOLIO */

.webbe-portfolio-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #1e293b;
    border-radius: 24px;
    background: #0f172a;
    transition: all .3s ease;
}

.webbe-portfolio-card:hover {
    transform: translateY(-6px);
    border-color: #334155;
}

.webbe-portfolio-card > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}

.webbe-portfolio-card:hover > img {
    transform: scale(1.07);
}

.webbe-portfolio-content {
    padding: 25px;
}

.webbe-portfolio-content > span {
    color: #38bdf8;
    font-size: 10px;
    font-weight: 800;
}

.webbe-portfolio-content h3 {
    margin: 7px 0;
    color: #fff;
    font-size: 18px;
}

.webbe-portfolio-content p {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.7;
}

.webbe-portfolio-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 13px;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 11px;
}


/* PRICING */

.webbe-price-card {
    position: relative;
    height: 100%;
    padding: 32px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.webbe-price-card > span:not(.webbe-price-label) {
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .5px;
}

.webbe-price-card h3 {
    margin: 8px 0 15px;
    color: #0f172a;
    font-size: 25px;
    font-weight: 900;
}

.webbe-price {
    margin-bottom: 20px;
    color: #0284c7;
    font-size: 29px;
    font-weight: 900;
}

.webbe-price small {
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
}

.webbe-price-card ul {
    padding-top: 20px;
    margin: 0 0 25px;
    border-top: 1px solid #f1f5f9;
    list-style: none;
}

.webbe-price-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 12px;
}

.webbe-price-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
}

.webbe-price-card > a {
    display: block;
    padding: 11px;
    border: 1px solid #0284c7;
    border-radius: 99px;
    color: #0284c7;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.webbe-price-featured {
    background: linear-gradient(180deg,#0f172a,#1e293b);
    border-color: #0284c7;
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(15,23,42,.22);
}

.webbe-price-featured > span:not(.webbe-price-label) {
    color: #38bdf8;
}

.webbe-price-featured h3,
.webbe-price-featured .webbe-price {
    color: #fff;
}

.webbe-price-featured .webbe-price {
    color: #38bdf8;
}

.webbe-price-featured li {
    color: #cbd5e1;
}

.webbe-price-featured > a {
    border: 0;
    color: #fff;
    background: linear-gradient(90deg,#0ea5e9,#6366f1);
}

.webbe-price-label {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    white-space: nowrap;
    border-radius: 99px;
    background: linear-gradient(90deg,#0ea5e9,#6366f1);
    color: #fff !important;
    font-size: 9px !important;
}


/* FAQ */

.webbe-faq .accordion-title {
    padding: 20px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    background: #fff;
}

.webbe-faq .accordion-inner {
    padding: 20px 25px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.8;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: 0;
}


/* CONTACT */

#contact-business {
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(14,165,233,.15),
            transparent 30%
        ),
        #0f172a !important;
}

.webbe-contact-content h2 {
    margin: 12px 0 20px;
    color: #fff;
    font-size: clamp(32px,4vw,50px);
    font-weight: 900;
    line-height: 1.15;
}

.webbe-contact-content > p {
    color: #94a3b8;
    line-height: 1.8;
}

.webbe-contact-info {
    margin-top: 30px;
}

.webbe-contact-info > div {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.webbe-contact-info i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(14,165,233,.12);
    color: #38bdf8;
}

.webbe-contact-info span {
    color: #cbd5e1;
    font-size: 13px;
}

.webbe-contact-info strong {
    display: block;
    color: #fff;
    font-size: 11px;
    margin-bottom: 2px;
}


/* MOBILE */

@media(max-width:849px) {

    .webbe-business-hero {
        padding-top: 80px !important;
    }

    .webbe-mockup {
        margin-top: 30px;
        padding: 10px;
    }

    .webbe-floating-top {
        right: -5px;
        top: -15px;
    }

    .webbe-floating-bottom {
        left: -5px;
        bottom: -15px;
    }

    .webbe-trust-box {
        justify-content: center;
        text-align: center;
    }

    .webbe-feature-pills .webbe-pills {
        justify-content: center;
    }

    .webbe-price-featured {
        transform: none;
    }

    .webbe-score-head {
        flex-direction: column;
    }

    .webbe-section-heading {
        margin-bottom: 35px;
    }

}

@media(max-width:549px) {

    .webbe-browser {
        padding: 12px;
        border-radius: 20px;
    }

    .webbe-preview img {
        height: 180px;
    }

    .webbe-url {
        font-size: 8px;
    }

    .webbe-floating {
        padding: 9px;
    }

    .webbe-floating > i {
        width: 34px;
        height: 34px;
    }

    .webbe-floating strong {
        font-size: 10px;
    }

    .webbe-floating span {
        font-size: 8px;
    }

    .webbe-stat-grid {
        gap: 5px;
    }

    .webbe-stat-grid div {
        padding: 9px 3px;
    }

    .webbe-stat-grid strong {
        font-size: 12px;
    }

    .webbe-pills span {
        font-size: 11px;
    }

}

/* Custom Fonts & Base Colors for WEBBE Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif !important;
}

/* Backgrounds & Glassmorphism */
.premium-bg {
    background: radial-gradient(circle at top, #111e38 0%, #060b18 100%) !important;
}

.glassmorphism {
    background: rgba(11, 19, 41, 0.85) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-hover {
    transition: all 0.3s ease-in-out;
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(30, 64, 175, 0.15), 0 8px 10px -6px rgba(13, 148, 136, 0.1);
}

/* Custom Interactive Tabs */
.dn-type-tab-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
}
.dn-type-tab-btn.active {
    background: #1d4ed8 !important;
    color: #ffffff !important;
    border-color: #1d4ed8 !important;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
}

.gallery-filter-btn {
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: #f1f5f9;
    color: #475569;
    transition: all 0.2s ease;
}
.gallery-filter-btn.active {
    background: #1d4ed8 !important;
    color: #ffffff !important;
}

/* Interactive Calculator Styling */
.calc-option-box {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 16px;
}
.calc-input {
    width: 100%;
    background: #0f172a !important;
    border: 1px solid #334155 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
}
