/* ==========================
   FURdesk Hero
========================== */

.furdesk-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#0A0A0A;
}

.furdesk-bg{
    position:absolute;
    inset:0;
}

.furdesk-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.12;
}

.furdesk-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.70) 0%,
        rgba(10,10,10,.82) 40%,
        #0A0A0A 100%
    );
}

.furdesk-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.furdesk-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border:1px solid rgba(0,212,255,.25);
    background:rgba(0,212,255,.05);
    border-radius:999px;
    margin-bottom:30px;
}

.furdesk-badge span{
    color:#00D4FF;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.furdesk-title{
    font-size:clamp(42px,6vw,72px);
    line-height:1.1;
    font-weight:900;
    color:#fff;
    margin-bottom:25px;
}

.furdesk-title span{
    color:#00D4FF;
}

.furdesk-desc{
    font-size:20px;
    color:rgba(255,255,255,.65);
    max-width:700px;
    margin-bottom:10px;
}

.furdesk-tagline{
    color:rgba(255,255,255,.45);
    font-style:italic;
    margin-bottom:40px;
}

.furdesk-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;
}

.furdesk-tags span{
    padding:12px 18px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
    color:rgba(255,255,255,.65);
    font-size:14px;
}

.furdesk-hero .cta-btn {
  margin: 5px;
}

section.furdesk-hero.ibt-section-gapTop {
    padding: 180px 0;
}

@media(max-width:768px){

    .furdesk-hero{
        min-height:auto;
        padding-top:140px;
        padding-bottom:80px;
    }

    .furdesk-title{
        font-size:42px;
    }

    .furdesk-desc{
        font-size:16px;
    }

    .furdesk-tags{
        gap:10px;
    }

    .furdesk-tags span{
        font-size:13px;
        padding:10px 14px;
    }
}

/* ==================================
   FURdesk Stats
================================== */

.furdesk-stats{
    background:#0D0D0D;
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
    padding: 50px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat-item{
    padding:10px 10pxu;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.05);
}

.stat-item:last-child{
    border-right:none;
}

.stat-item h3{
    margin:0 0 16px;
    color:#00D4FF !important;
    font-size:36px;
    font-weight:900;
    line-height:1;
}

.stat-item p{
    margin:0;
    color:rgba(255,255,255,0.55) !important;
    font-size:12px;
    line-height:1.5;
    font-weight:400;
}

@media(max-width:991px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat-item{
        border-bottom:1px solid rgba(255,255,255,.05);
    }
}

@media(max-width:576px){

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

    .stat-item{
        border-right:none;
    }
}

/* ==================================
   FURdesk Showcase
================================== */

.furdesk-showcase{
    background:#0A0A0A;
}

.showcase-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.showcase-card{
    position:relative;
    overflow:hidden;
    height:320px;
    cursor:pointer;
}

.showcase-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.65;
    transition:.6s ease;
}

.showcase-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.7),
        rgba(0,0,0,0)
    );
}

.showcase-card span{
    position:absolute;
    bottom:25px;
    left:25px;
    color:#fff;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    z-index:2;
}

.showcase-card:hover img{
    transform:scale(1.08);
    opacity:.9;
}

@media(max-width:991px){

    .showcase-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

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

    .showcase-card{
        height:260px;
    }
}

/* ==================================
   FURdesk Features
================================== */

.furdesk-features{
    background:#0A0A0A;
    border-top:1px solid rgba(255,255,255,.05);
}

.section-heading{
    margin-bottom:70px;
}

.section-tag{
    display:block;
    color:#E8570A;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:clamp(38px,5vw,60px);
    line-height:1.15;
    color:#fff;
    font-weight:900;
    margin-bottom:20px;
}

.section-heading h2 span{
    color:#00D4FF;
}

.section-heading p{
    max-width:720px;
    color:#8C8C8C;
    font-size:16px;
    line-height:1.8;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.feature-card{
    background:#0D0D0D;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px;
    transition:all .35s ease;
}

.feature-card:hover{
    border-color:rgba(0,212,255,.25);
    background:#111111;
    transform:translateY(-5px);
}

.feature-icon{
    font-size:34px;
    margin-bottom:24px;
}

.feature-card h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.feature-label{
    display:block;
    color:#00D4FF;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.feature-card p{
    color:#8C8C8C !important;
    font-size:12px;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

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

    .feature-card{
        padding:30px;
    }

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

/* ==================================
   FURdesk Feature Split Section
================================== */

.furdesk-feature-block{
    background:#0D0D0D;
    padding:120px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.feature-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.feature-tag{
    display:block;
    margin-bottom:20px;

    color:#E8570A;

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.feature-content h2{
    color:#fff;
    font-size:52px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:35px;
}

.feature-content h2 span{
    color:#00D4FF;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.feature-list li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    color:#8C8C8C !important;
    font-size:16px;
    line-height:1.7;
    margin-bottom:18px;
}

.feature-list i{
    color:#00D4FF !important;
    margin-top:5px;
    font-size:14px;
}

.feature-quote{
    color:rgba(255,255,255,.35) !important;
    font-style:italic;
    margin-bottom:35px;
    font-size:16px;
}

.feature-image{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
    aspect-ratio:4/3;
}

.feature-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.72;
}

.feature-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.70),
        rgba(0,0,0,.10)
    );
}

.booking-card{
    position:absolute;
    left:25px;
    bottom:25px;
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(255,255,255,.95);
    padding:15px 18px;
    border-radius:16px;
}

.booking-icon{
    font-size:24px;
}

.booking-card h4{
    margin:0;
    color:#111 !important;
    font-size:13px;
    font-weight:700;
}

.booking-card span{
    color:#666;
    font-size:12px;
}

.reminder-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:#E8570A;
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;
    padding:8px 14px;
    border-radius:50px;
}

@media(max-width:991px){

    .feature-layout{
        grid-template-columns:1fr;
        gap:50px;
    }

    .feature-content h2{
        font-size:42px;
    }
}

@media(max-width:767px){

    .furdesk-feature-block{
        padding:80px 0;
    }

    .feature-content h2{
        font-size:34px;
    }

    .booking-card{
        left:15px;
        right:15px;
        bottom:15px;
    }
}

/* ==================================
   Alternate Feature Block
================================== */

.alt-layout{
    background:#0A0A0A;
}

.feature-tag.orange{
    color:#E8570A;
}

.feature-content h2 .orange{
    color:#E8570A;
}

.feature-intro{
    color:#8C8C8C;
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
    max-width:560px;
}

.orange-list i{
    color:#E8570A;
}

/* image card reused */

.alt-layout .booking-card{
    background:rgba(255,255,255,.95);
}

.alt-layout .booking-card h4{
    color:#111;
}

.alt-layout .booking-card span{
    color:#666;
}


/* ==================================
   FURdesk Benefits
================================== */

.furdesk-benefits{
    padding:120px 0;
    background:#0D0D0D;
    border-top:1px solid rgba(255,255,255,.05);
}

.benefits-header{
    text-align:center;
    margin-bottom:70px;
}

.benefits-header h2{
    color:#fff;
    font-size:clamp(34px,4vw,52px);
    font-weight:900;
    margin:0;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);

    border:1px solid rgba(255,255,255,.05);
    border-radius:18px;
    overflow:hidden;
}

.benefit-card{
    position:relative;

    padding:40px 30px;

    background:#0D0D0D;

    border-right:1px solid rgba(255,255,255,.05);

    transition:all .35s ease;
}

.benefit-card:last-child{
    border-right:none;
}

.benefit-card:hover{
    background:rgba(232,87,10,.05);
}

.benefit-number{
    font-size:48px;
    font-weight:900;
    line-height:1;
    color:rgb(255,255,255);
    margin-bottom:20px;
    transition:.35s ease;
}

.benefit-card:hover .benefit-number{
    color:rgba(232,87,10,.20);
}

.benefit-card h3{
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
    min-height:44px;
}

.benefit-card p{
    color:#8C8C8C !important;
    font-size:12px;
    line-height:1.7;

    margin:0;
}

/* Tablet */

@media(max-width:1200px){

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .benefit-card{
        border-bottom:1px solid rgba(255,255,255,.05);
    }

    .benefit-card:nth-child(2n){
        border-right:none;
    }
}

/* Mobile */

@media(max-width:767px){

    .furdesk-benefits{
        padding:80px 0;
    }

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

    .benefit-card{
        border-right:none;
    }

    .benefits-header{
        margin-bottom:50px;
    }

    .benefit-number{
        font-size:56px;
    }
}

/* ==================================
   Responsible Breeding Connect
================================== */

.furdesk-breeding{
    padding:120px 0;
    background:#0A0A0A;
    border-top:1px solid rgba(255,255,255,.05);
}

.breeding-header{
    max-width:800px;
    margin:0 auto 70px;
    text-align:center;
}

.breeding-header h2{
    color:#fff;
    font-size:clamp(34px,4vw,52px);
    font-weight:900;
    line-height:1.2;
    margin-bottom:20px;
}

.breeding-header p{
    max-width:650px;
    margin:0 auto;

    color:#8C8C8C;
    font-size:16px;
    line-height:1.8;
}

.breeding-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.breeding-card{
    background:#0D0D0D;

    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;

    padding:40px;

    transition:all .35s ease;
}

.breeding-card:hover{
    border-color:rgba(232,87,10,.25);
    background:#111111;
    transform:translateY(-6px);
}

.breeding-icon{
    font-size:42px;
    margin-bottom:25px;
}

.breeding-card h3{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:18px;
    line-height:1.3;
}

.breeding-card p{
    color:#8C8C8C !important;
    font-size:12px;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .breeding-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .breeding-card{
        padding:35px;
    }
}

@media(max-width:767px){

    .furdesk-breeding{
        padding:80px 0;
    }

    .breeding-header{
        margin-bottom:50px;
    }

    .breeding-card{
        padding:30px;
    }

    .breeding-card h3{
        font-size:20px;
    }
}

/* ==================================
   FURdesk Pricing
================================== */

.furdesk-pricing{
    padding:120px 0;
    background:#0D0D0D;
    border-top:1px solid rgba(255,255,255,.05);
}

.pricing-header{
    text-align:center;
    margin-bottom:70px;
}

.pricing-header h2{
    color:#fff;
    font-size:clamp(34px,4vw,52px);
    font-weight:900;
    margin-bottom:18px;
}

.pricing-header p{
    color:#8C8C8C;
    font-size:15px;
}

.section-tag.blue{
    color:#00D4FF;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.pricing-card{
    position:relative;

    background:#0A0A0A;

    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;

    padding:40px;

    transition:.35s ease;
}

.pricing-card:hover{
    transform:translateY(-6px);
}

.plan-name{
    color:rgba(255,255,255,.5);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.price-wrap{
    display:flex;
    align-items:flex-end;
    gap:6px;
    margin-bottom:8px;
}

.price{
    color:#fff;
    font-size:52px;
    font-weight:900;
    line-height:1;
}

.period{
    color:#8C8C8C;
    margin-bottom:8px;
}

.annual-price{
    color:rgba(255,255,255,.35);
    font-size:13px;
    margin-bottom:10px;
}

.staff-limit{
    color:#8C8C8C;
    font-size:14px;
    padding-bottom:25px;
    margin-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.plan-features{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.plan-features li{
    display:flex;
    gap:12px;
    margin-bottom:14px;
    color:#B5B5B5 !important;
    font-size:15px;
}

.plan-features i{
    color:#00D4FF;
    margin-top:4px;
}

.pricing-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:14px;
    border-radius:10px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:12px;
    font-weight:700;
}

.outline-btn{
    border:1px solid rgba(255,255,255,.20);
    color:#fff;
}

.outline-btn:hover{
    border-color:rgba(255,255,255,.50);
}

.primary-btn{
    background:#E8570A;
    color:#fff;
}

.primary-btn:hover{
    background:#cf4a00;
}

.featured-plan{
    border-color:#E8570A;
    background:rgba(232,87,10,.05);
    transform:scale(1.04);
}

.popular-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#E8570A;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;

    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.pricing-note{
    text-align:center;
    margin-top:35px;
    color:rgba(255,255,255,.25);
    font-size:12px;
}

@media(max-width:991px){

    .pricing-grid{
        grid-template-columns:1fr;
        max-width:600px;
    }

    .featured-plan{
        transform:none;
    }
}

@media(max-width:767px){

    .furdesk-pricing{
        padding:80px 0;
    }

    .pricing-card{
        padding:30px;
    }

    .price{
        font-size:42px;
    }
}
/* ==================================
   FURdesk CTA
================================== */

.furdesk-cta{
    padding:120px 0;
    background:#0A0A0A;
    border-top:1px solid rgba(255,255,255,.05);
}

.cta-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
    min-height:520px;
}

.cta-bg{
    position:absolute;
    inset:0;
}

.cta-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cta-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(13,13,13,0.98) 0%,
            rgba(13,13,13,0.95) 55%,
            rgba(13,13,13,0.82) 100%
        );
}

.cta-content{
    position:relative;
    z-index:2;
    margin:auto;
    text-align:center;
    padding:110px 40px;
}

.cta-content h2{
    color:#fff;
    font-size:48px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:25px;
}

.cta-content h2 span{
    color:#00D4FF;
}

.cta-content p{
    max-width:620px;
    margin:0 auto 45px;
    color:#8C8C8C !important;
    font-size:14px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.cta-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    background:#E8570A;
    color:#fff;
    border-radius:10px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;

    transition:.3s ease;
}

.cta-primary:hover{
    background:#cf4a00;
    transform:translateY(-2px);
}

.cta-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border:1px solid rgba(255,255,255,.20);
    color:#fff;
    border-radius:10px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    transition:.3s ease;
}

.cta-secondary:hover{
    border-color:rgba(255,255,255,.50);
}

.cta-primary,
.cta-secondary{
    text-decoration:none;
}
@media(max-width:767px){

    .furdesk-cta{
        padding:80px 0;
    }

    .cta-wrapper{
        min-height:auto;
    }

    .cta-content{
        padding:70px 25px;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-primary,
    .cta-secondary{
        width:100%;
    }
}

/* ==================================
   Services Hero
================================== */

.services-hero{
    position:relative;
    overflow:hidden;
    background:#0A0A0A;

    padding:180px 0 140px;
}

.services-bg{
    position:absolute;
    inset:0;
}

.services-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:
        brightness(.4)
        saturate(.7);
}

.services-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.80) 0%,
            rgba(10,10,10,.80) 50%,
            #0A0A0A 100%
        );
}

/* Grid Pattern */

.services-grid{
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(
            rgba(232,87,10,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(232,87,10,.03) 1px,
            transparent 1px
        );

    background-size:72px 72px;
}

.services-hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.services-label{
    display:flex;
    align-items:center;
    gap:14px;

    margin-bottom:40px;
}

.services-label .line{
    width:32px;
    height:1px;
    background:#E8570A;
}

.services-label .label-text{
    color:#E8570A;

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;
}

.services-title{
    font-size:clamp(60px,8vw,130px);

    line-height:.92;
    font-weight:900;

    color:#fff;

    margin-bottom:35px;
}

.services-title .orange-text{
    color:#E8570A;
}

.services-title .outline-text{
    color:transparent;

    -webkit-text-stroke:
        1.5px rgba(255,255,255,.30);

    text-stroke:
        1.5px rgba(255,255,255,.30);
}

.services-description{
    max-width:650px;

    color:rgba(255,255,255,.55);

    font-size:17px;
    line-height:1.9;

    margin-bottom:45px;
}

.services-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}
@media(max-width:991px){

    .services-hero{
        padding:150px 0 100px;
    }

    .services-title{
        font-size:80px;
    }
}

@media(max-width:767px){

    .services-hero{
        padding:120px 0 80px;
    }

    .services-title{
        font-size:54px;
        line-height:1;
    }

    .services-description{
        font-size:15px;
        line-height:1.8;
    }

    .services-buttons{
        flex-direction:column;
    }

    .services-buttons .cta-btn{
        width:100%;
        justify-content:center;
    }

    .services-label{
        flex-wrap:wrap;
        gap:10px;
    }

    .services-label .label-text{
        font-size:10px;
        line-height:1.6;
    }
}

@media(max-width:480px){

    .services-title{
        font-size:42px;
    }

    .services-description{
        font-size:14px;
    }
}

/* ==================================
   Philosophy Section
================================== */

.services-philosophy{
    background:#0D0D0D;
    border-top:1px solid rgba(255,255,255,.05);
}

.philosophy-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.philosophy-image{
    position:relative;
    min-height:650px;
    overflow:hidden;
}

.philosophy-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:.60;

    filter:
        brightness(.7)
        saturate(.8);
}

.image-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(13,13,13,.80),
            #0D0D0D
        );
}

.philosophy-badge{
    position:absolute;
    left:30px;
    bottom:30px;

    background:#E8570A;
    color:#fff;

    padding:12px 18px;

    font-size:11px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;
}

.philosophy-content{
    padding:90px 80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.section-label{
    display:flex;
    align-items:center;
    gap:12px;
}

.section-label .line{
    width:28px;
    height:1px;
    background:#E8570A;
}

.section-label span:last-child{
    color:#E8570A;

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;
}

.philosophy-content h2{
    color:#fff;

    font-size:48px;
    line-height:1.2;
    font-weight:900;

    margin-bottom:30px;
}

.philosophy-content h2 span{
    color:#E8570A;
}

.philosophy-content p{
    color:rgba(255,255,255,.50) !important;
    font-size:12px !important;
    line-height:2;

    margin-bottom:40px;
}

.belief-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.belief-tags span{
    padding:10px 16px;

    border:1px solid rgba(232,87,10,.30);
    border-radius:6px;

    color:rgba(232,87,10,.85);

    font-size:11px;
    font-weight:700;

    letter-spacing:1.5px;
    text-transform:uppercase;
}
@media(max-width:991px){

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

    .philosophy-image{
        min-height:450px;
    }

    .philosophy-content{
        padding:70px 40px;
    }

    .philosophy-content h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .philosophy-image{
        min-height:320px;
    }

    .philosophy-content{
        padding:50px 25px;
    }

    .philosophy-content h2{
        font-size:30px;
    }

    .philosophy-content p{
        font-size:14px;
        line-height:1.9;
    }

    .belief-tags{
        gap:8px;
    }

    .belief-tags span{
        font-size:10px;
        padding:8px 12px;
    }

    .philosophy-badge{
        left:15px;
        bottom:15px;
        padding:10px 14px;
        font-size:10px;
    }
}

/* ==================================
   Solution Portfolio
================================== */

.solutions-section{
    padding:120px 0;
    background:#0A0A0A;
    border-top:1px solid rgba(255,255,255,.05);
}

.solutions-header{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:end;
    margin-bottom:70px;
}

.solutions-heading h2{
    font-size: 60px;
    line-height:.95;
    font-weight:900;
    color:#fff;
    margin-top: 20px;
}

.solutions-intro p{
    color:rgba(255,255,255,.45) !important;
    font-size:14px;
    line-height:2;
}

.solutions-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.05);
    border-radius:16px;
    overflow:hidden;
}

.solution-card{
    position:relative;
    background:#0D0D0D;
    padding:35px;
    min-height:420px;

    display:flex;
    flex-direction:column;

    transition:.35s ease;
}

.solution-card.featured{
    background:#111111;
}

.solution-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:2px;
    background:#E8570A;

    transform:scaleY(0);
    transform-origin:bottom;
    transition:.35s;
}

.solution-card:hover{
    background:#141414;
}

.solution-card:hover::before{
    transform:scaleY(1);
}

.solution-tag{
    align-self:flex-start;

    border:1px solid rgba(232,87,10,.20);
    background:#0A0A0A;

    color:#E8570A;

    padding:8px 12px;

    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:22px;
}

.solution-icon{
    font-size:28px;
    margin-bottom:18px;
}

.solution-card h3{
    color:#fff;
    font-size:18px;
    font-weight:800;
    margin-bottom:8px;
}

.solution-card h4{
    color:#E8570A !important;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.solution-card p{
    color:rgba(255,255,255,.45) !important;
    line-height:1.8;
    font-size:14px;
    flex:1;
}

.solution-card a{
    margin-top:25px;

    color:rgba(255,255,255,.35);

    text-transform:uppercase;
    letter-spacing:2px;
    font-size:11px;
    font-weight:700;

    text-decoration:none;
    transition:.3s;
}

.solution-card a:hover{
    color:#E8570A;
}

.vault-link{
    color:#00D4FF !important;
}
@media (max-width:1200px){

    .solutions-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:991px){

    .solutions-header{
        grid-template-columns:1fr;
        gap:30px;
    }

    .solutions-heading h2{
        font-size:60px;
    }
}

@media (max-width:767px){

    .solutions-section{
        padding:80px 0;
    }

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

    .solutions-heading h2{
        font-size:42px;
    }

    .solution-card{
        min-height:auto;
        padding:30px 25px;
    }
}

/* ===================================
   Why Custom Matters
=================================== */

.hm-custom-matters {
    background: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,.05);
}

.hm-custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hm-custom-image {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hm-custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .5;
    filter: brightness(.5) saturate(.7);
    display: block;
}

.hm-custom-content {
    background: #E8570A;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hm-custom-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 25px;
}

.hm-custom-content h2 {
    font-size: 60px;
    font-weight: 900;
    line-height: .95;
    color: #fff;
    margin-bottom: 30px;
}

.hm-custom-content p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
    max-width: 520px;
    margin-bottom: 40px;
}

.hm-custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;

    background: #fff;
    color: #E8570A;

    padding: 16px 30px;
    border-radius: 8px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    text-decoration: none;
    transition: .3s ease;
}

.hm-custom-btn:hover {
    background: #fff3ec;
    transform: translateY(-2px);
}

.hm-custom-btn span {
    font-size: 16px;
}

/* ===================================
   Responsive
=================================== */

@media (max-width: 991px) {

    .hm-custom-grid {
        grid-template-columns: 1fr;
    }

    .hm-custom-image {
        min-height: 350px;
    }

    .hm-custom-content {
        padding: 60px 30px;
    }

    .hm-custom-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .hm-custom-image {
        min-height: 280px;
    }

    .hm-custom-content {
        padding: 50px 20px;
    }

    .hm-custom-content h2 {
        font-size: 34px;
    }

    .hm-custom-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hm-custom-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Process Section
=================================== */

.hm-process-section {
    background: #0A0A0A;
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.process-header {
    margin-bottom: 25px;
}

.process-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-line {
    width: 28px;
    height: 1px;
    background: #E8570A;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E8570A;
}

.process-title {
    font-size: 60px;
    line-height: 0.95;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.process-desc {
    max-width: 700px;
    margin-bottom: 80px;
}

.process-desc p {
    color: rgba(255,255,255,.45) !important;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Grid */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    position: relative;
}

/* Connecting line */

.process-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 0%;
    right: 8%;
    height: 1px;
    background: rgba(232,87,10,.25);
    z-index: 1;
}

.process-card {
    position: relative;
    z-index: 2;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(232,87,10,.30);
    background: #0A0A0A;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #E8570A;
    font-size: 14px;
    font-weight: 900;

    margin-bottom: 25px;
    transition: all .3s ease;
}

.process-card:hover .process-number {
    background: #E8570A;
    color: #fff;
    border-color: #E8570A;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.45) !important;
    margin: 0;
}

/* Tablet */

@media (max-width: 991px) {

    .hm-process-section {
        padding: 90px 0;
    }

    .process-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 50px 30px;
    }

    .process-grid::before {
        display: none;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .hm-process-section {
        padding: 70px 0;
    }

    .process-title {
        font-size: 38px;
    }

    .process-desc {
        margin-bottom: 50px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-card h3 {
        font-size: 18px;
    }
}

/* ====================================
   WHY CHOOSE US
==================================== */

.hm-why-section {
    background: #0D0D0D;
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,.05);
}

.why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 70px;
}

.section-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-line {
    width: 28px;
    height: 1px;
    background: #E8570A;
}

.section-label {
    color: #E8570A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-heading h2 {
    font-size: 48px;
    line-height: .95;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.why-intro p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.45) !important;
    margin: 0;
}

/* Grid */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 14px;
    overflow: hidden;
}

.why-card {
    background: #0D0D0D;
    padding: 40px;
    position: relative;
    transition: all .35s ease;
    min-height: 320px;
}

.why-card:hover {
    background: #111111;
}

.why-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255,255,255,.05);
    line-height: 1;
    pointer-events: none;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    max-width: 280px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.45);
    position: relative;
    z-index: 2;
    margin: 0;
}

.why-icon {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 24px;
    opacity: .20;
}

/* Hover Effect */

.why-card:hover .why-number {
    color: rgba(232,87,10,.12);
}

.why-card:hover h3 {
    color: #fff;
}

/* ==========================
   Tablet
========================== */

@media (max-width: 991px) {

    .hm-why-section {
        padding: 90px 0;
    }

    .why-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

/* ==========================
   Mobile
========================== */

@media (max-width: 767px) {

    .hm-why-section {
        padding: 70px 0;
    }

    .why-heading h2 {
        font-size: 38px;
    }

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

    .why-card {
        min-height: auto;
        padding: 35px 25px;
    }

    .why-number {
        font-size: 54px;
        right: 15px;
    }

    .why-card h3 {
        font-size: 20px;
    }
}

/* ==========================
   Industries Section
========================== */

.hm-industries-section{
    background:#0A0A0A;
    padding:120px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.hm-industries-header{
    margin-bottom:60px;
}

.hm-section-label{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.hm-line{
    width:28px;
    height:1px;
    background:#E8570A;
}

.hm-section-label span:last-child{
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#E8570A;
}

.hm-industries-header h2{
    font-size: 48px;
    line-height:.95;
    font-weight:900;
    color:#fff;
    margin-bottom:24px;
}

.hm-industries-header p{
    max-width:600px;
    font-size:14px;
    line-height:1.8;
    color:rgba(255,255,255,.45) !important;
}

.hm-industries-tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.hm-industries-tags span{
    padding:14px 22px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.02);
    color:rgba(255,255,255,.55);
    font-size:14px;
    transition:all .3s ease;
    cursor:default;
}

.hm-industries-tags span:hover{
    transform:translateY(-3px);
    border-color:rgba(255,255,255,.25);
    color:#fff;
}

.hm-industries-tags span.featured{
    border-color:rgba(232,87,10,.4);
    background:rgba(232,87,10,.05);
    color:rgba(232,87,10,.85);
}

.hm-industries-tags span.featured:hover{
    background:rgba(232,87,10,.10);
    border-color:#E8570A;
    color:#E8570A;
}

/* ==========================
   Responsive
========================== */

@media (max-width:991px){

    .hm-industries-section{
        padding:90px 0;
    }

    .hm-industries-header{
        margin-bottom:50px;
    }

    .hm-industries-header h2{
        font-size:48px;
    }
}

@media (max-width:767px){

    .hm-industries-section{
        padding:70px 0;
    }

    .hm-industries-header h2{
        font-size:36px;
        line-height:1.05;
    }

    .hm-industries-header p{
        font-size:14px;
    }

    .hm-industries-tags{
        gap:10px;
    }

    .hm-industries-tags span{
        width:100%;
        text-align:center;
        padding:12px 16px;
        font-size:13px;
    }
}
/* ==========================
   Contact Section
========================== */

.hm-contact-section{
    background:#0D0D0D;
    padding:120px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.hm-contact-content .hm-section-label{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:24px;
}

.hm-contact-content .hm-line{
    width:28px;
    height:1px;
    background:#E8570A;
}

.hm-contact-content .hm-section-label span:last-child{
    color:#E8570A;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hm-contact-content h2{
    font-size:60px;
    line-height:.95;
    font-weight:900;
    color:#fff;
    margin-bottom:30px;
}

.hm-contact-content h2 span{
    color:#E8570A;
}

.hm-contact-content p{
    font-size:14px;
    line-height:1.9;
    color:rgba(255,255,255,.45) !important;
    max-width:620px;
}

/* Card */

.hm-contact-card{
    background:#E8570A;
    border-radius:24px;
    padding:60px;
    position:relative;
    overflow:hidden;
}

.hm-contact-circle{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    border:40px solid rgba(255,255,255,.10);
    top:-60px;
    right:-60px;
}

.hm-contact-card h3{
    position:relative;
    font-size:34px;
    font-weight:900;
    color:#fff;
    margin-bottom:18px;
}

.hm-contact-card p{
    position:relative;
    color:rgba(255,255,255,.82);
    line-height:1.8;
    font-size:15px;
    margin-bottom:35px;
}

.hm-contact-buttons{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.hm-btn-white{
    display:block;
    text-align:center;
    background:#fff;
    color:#E8570A;
    padding:16px 25px;
    border-radius:8px;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    text-decoration:none;
    transition:.3s;
}

.hm-btn-white:hover{
    background:#fff4ee;
    color:#E8570A;
}

.hm-btn-outline{
    display:block;
    text-align:center;
    padding:16px 25px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    text-decoration:none;
    transition:.3s;
}

.hm-btn-outline:hover{
    border-color:#fff;
    color:#fff;
}

.hm-contact-card small{
    display:block;
    text-align:center;
    margin-top:24px;
    color:rgba(255,255,255,.45);
    font-size:12px;
    position:relative;
}

/* ==========================
   Responsive
========================== */

@media(max-width:991px){

    .hm-contact-section{
        padding:90px 0;
    }

    .hm-contact-content{
        margin-bottom:10px;
    }

    .hm-contact-content h2{
        font-size:54px;
    }

    .hm-contact-card{
        padding:45px;
    }
}

@media(max-width:767px){

    .hm-contact-section{
        padding:70px 0;
    }

    .hm-contact-content h2{
        font-size:38px;
        line-height:1.05;
    }

    .hm-contact-content p{
        font-size:14px;
    }

    .hm-contact-card{
        padding:35px 25px;
        border-radius:18px;
    }

    .hm-contact-card h3{
        font-size:28px;
    }

    .hm-contact-card p{
        font-size:14px;
    }

    .hm-contact-circle{
        width:120px;
        height:120px;
        border-width:25px;
        top:-40px;
        right:-40px;
    }

    .hm-btn-white,
    .hm-btn-outline{
        padding:14px 18px;
        font-size:11px;
        letter-spacing:1px;
    }
}

/* ==========================
   Slottwise Hero
========================== */

.slottwise-hero{
    background:#0D0D0D;
    padding:180px 0 0;
    overflow:hidden;
}

.slottwise-content{
    padding-bottom:70px;
}

.slottwise-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 16px;
    border-radius:999px;
    border:1px solid rgba(0,212,255,.20);
    background:rgba(0,212,255,.05);
    margin-bottom:30px;
}

.slottwise-badge span{
    color:#00D4FF;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.slottwise-content h1{
    font-size:60px;
    line-height:1.05;
    font-weight:900;
    color:#fff;
    margin-bottom:25px;
}

.slottwise-content h1 span{
    color:#00D4FF;
}

.hero-desc{
    color:rgba(255,255,255,.55) !important;
    font-size:16px;
    line-height:1.8;
    max-width:650px;
}

.slottwise-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:35px 0 45px;
}

.slottwise-tags span{
    padding:10px 14px;
    border-radius:999px;
    border:1px solid rgba(0,212,255,.20);
    background:rgba(0,212,255,.05);
    color:#00D4FF;
    font-size:12px;
    font-weight:600;
}

.slottwise-stats{
    display:flex;
    flex-wrap:wrap;
    gap:40px;
    padding-top:35px;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:45px;
}

.stat-item strong{
    display:block;
    font-size:32px;
    font-weight:900;
    color:#00D4FF;
}

.stat-item span{
    display:block;
    margin-top:6px;
    font-size:12px;
    color:rgba(255,255,255,.35);
}

.hero-btn2 a {
  margin: 10px;
}

/* Dashboard */

.slottwise-dashboard{
    border:1px solid rgba(255,255,255,.10);
    border-bottom:none;
    border-radius:24px 24px 0 0;
    overflow:hidden;
}

.dashboard-top{
    background:#7B1C2E;
    padding:14px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.dots{
    display:flex;
    gap:6px;
}

.dots span{
    width:12px;
    height:12px;
    border-radius:50%;
}

.dots span:nth-child(1){background:#ff6b6b;}
.dots span:nth-child(2){background:#ffd93d;}
.dots span:nth-child(3){background:#6bcf63;}

.dashboard-title,
.dashboard-time{
    font-size:12px;
    color:rgba(255,255,255,.65);
}

.dashboard-body{
    background:#FAFAF9;
    padding:20px;
}

.dashboard-metrics{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-bottom:15px;
}

.metric-card{
    background:#fff;
    border:1px solid #E8D5D9;
    border-radius:12px;
    padding:14px;
}

.metric-card small{
    display:block;
    color:#8B6570;
    font-size:11px;
}

.metric-card strong{
    color:#7B1C2E;
    font-size:20px;
}

.chart-box{
    background:#F7EEF0;
    border-radius:12px;
    padding:15px;
}

.chart-title{
    font-size:12px;
    font-weight:700;
    color:#7B1C2E;
    margin-bottom:10px;
}

.chart-bars{
    height:60px;
    display:flex;
    align-items:flex-end;
    gap:6px;
}

.chart-bars span{
    flex:1;
    background:#7B1C2E;
    border-radius:4px 4px 0 0;
}

.chart-days{
    display:flex;
    margin-top:8px;
}

.chart-days span{
    flex:1;
    text-align:center;
    font-size:11px;
    color:#8B6570;
}

.dashboard-bottom{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:12px;
}

.patient-card,
.invoice-card{
    padding:14px;
    border-radius:12px;
}

.patient-card{
    background:#F7EEF0;
}

.invoice-card{
    background:#fff;
    border:1px solid #E8D5D9;
}

.patient-card small,
.invoice-card small{
    display:block;
    font-size:11px;
    color:#8B6570;
    margin-bottom:4px;
    text-transform:uppercase;
}

.patient-card strong,
.invoice-card strong{
    display:block;
    color:#1A0A0D;
    font-size:15px;
}

.patient-card span,
.invoice-card span{
    display:block;
    color:#8B6570;
    font-size:12px;
}

/* ==========================
   Responsive
========================== */

@media(max-width:991px){

    .slottwise-hero{
        padding:140px 0 0;
    }

    .slottwise-content{
        padding-bottom:50px;
    }

    .slottwise-dashboard{
        margin-top:20px;
    }
}

@media(max-width:767px){

    .slottwise-hero{
        padding:120px 0 0;
    }

    .slottwise-content h1{
        font-size:38px;
    }

    .hero-desc{
        font-size:15px;
    }

    .dashboard-metrics{
        grid-template-columns:repeat(2,1fr);
    }

    .dashboard-bottom{
        grid-template-columns:1fr;
    }

    .slottwise-stats{
        gap:25px;
    }

    .stat-item{
        width:calc(100% - 15px);
        margin-bottom: 20px;
    }

    .slottwise-tags span{
        font-size:11px;
    }

    .dashboard-title{
        display:none;
    }
}

/* ==========================
   Trusted Clinics Bar
========================== */

.slottwise-trusted-bar{
    background:#111111;
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
    padding:18px 0;
}

.trusted-wrapper{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.trusted-label{
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:rgba(255,255,255,.30);
}

.trusted-city{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:13px;
    color:rgba(255,255,255,.45);
}

.trusted-city .dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#00D4FF;
    flex-shrink:0;
}

@media (max-width: 768px){

    .slottwise-trusted-bar{
        padding:15px 0;
    }

    .trusted-wrapper{
        gap:12px;
    }

    .trusted-label{
        width:100%;
        text-align:center;
        margin-bottom:5px;
    }

    .trusted-city{
        font-size:12px;
    }
}

/* ==========================
   Slottwise Features
========================== */

.slottwise-features{
    background:#0A0A0A;
    padding:100px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.slottwise-features .section-heading{
    max-width:800px;
    margin:0 auto 70px;
}

.slottwise-features .section-label{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#E8570A;
    margin-bottom:15px;
}

.slottwise-features h2{
    font-size:36px;
    line-height:1.15;
    font-weight:900;
    color:#fff;
    margin-bottom:20px;
}

.slottwise-features h2 span{
    color:#00D4FF;
}

.slottwise-features .section-heading p{
    max-width:650px;
    margin:0 auto;
    color:rgba(255,255,255,.45) !important;
    font-size:14px;
    line-height:1.8;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.feature-card{
    background:#0D0D0D;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:all .35s ease;
}

.feature-card:hover{
    background:#111111;
    border-color:rgba(0,212,255,.25);
    transform:translateY(-5px);
}

.feature-icon{
    font-size:34px;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:18px;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
}

.feature-highlight{
    display:block;
    color:#00D4FF;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.feature-card p{
    color:rgba(255,255,255,.50);
    font-size:14px;
    line-height:1.8;
    margin:0;
}

/* Tablet */

@media (max-width:991px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .slottwise-features{
        padding:80px 0;
    }
}

/* Mobile */

@media (max-width:767px){

    .features-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .feature-card{
        padding:28px;
    }

    .slottwise-features{
        padding:70px 0;
    }

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

    .slottwise-features h2{
        font-size:32px;
    }

    .feature-card h3{
        font-size:17px;
    }
}
/* ==========================
   Slottwise Specialities
========================== */

.slottwise-specialities{
    background:#0D0D0D;
    padding:100px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.slottwise-specialities .section-heading{
    max-width:750px;
    margin:0 auto 70px;
}

.slottwise-specialities .section-label{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#E8570A;
    margin-bottom:15px;
}

.slottwise-specialities h2{
    font-size:36px;
    line-height:1.15;
    font-weight:900;
    color:#fff;
    margin-bottom:20px;
}

.slottwise-specialities h2 span{
    color:#00D4FF;
}

.slottwise-specialities .section-heading p{
    max-width:600px;
    margin:0 auto;
    font-size:14px;
    line-height:1.8;
    color:rgba(255,255,255,.45) !important;
}

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

.speciality-card{
    background:#0A0A0A;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:25px 18px;
    text-align:center;
    transition:all .35s ease;
}

.speciality-card:hover{
    background:#111111;
    border-color:rgba(0,212,255,.25);
    transform:translateY(-4px);
}

.speciality-icon{
    font-size:34px;
    margin-bottom:15px;
}

.speciality-card h3{
    font-size:13px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
    line-height:1.4;
}

.speciality-card p{
    font-size:12px;
    line-height:1.6;
    color:rgba(255,255,255,.35) !important;
    margin:0;
}

/* Tablet */

@media (max-width:991px){

    .specialities-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .speciality-card{
        padding:20px 15px;
    }

    .speciality-card p{
        display:none;
    }
}

/* Mobile */

@media (max-width:767px){

    .slottwise-specialities{
        padding:70px 0;
    }

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

    .specialities-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .speciality-card{
        padding:22px 12px;
    }

    .speciality-icon{
        font-size:30px;
        margin-bottom:12px;
    }

    .speciality-card h3{
        font-size:12px;
        margin-bottom:0;
    }

    .speciality-card p{
        display:none;
    }
}

/* ===================================
   Slottwise WhatsApp Section
=================================== */

.slottwise-whatsapp-section {
    padding: 120px 0;
    background: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,.05);
}

.slottwise-whatsapp-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E8570A !important;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 25px;
}

.section-title span {
    color: #00D4FF;
}

.section-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.55) !important;
    margin-bottom: 35px;
}

.result-box {
    padding: 24px;
    border-radius: 16px;
    background: rgba(0,212,255,.05);
    border: 1px solid rgba(0,212,255,.15);
}

.result-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.70) !important;
}

.result-box strong {
    color: #00D4FF;
}

/* Chat Card */

.slottwise-chat-wrapper {
    max-width: 380px;
    width: 100%;
    margin-left: auto;
}

.whatsapp-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.chat-header {
    background: #075E54;
    padding: 16px;
}

.chat-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.chat-status {
    color: rgba(255,255,255,.6) !important;
    font-size: 11px;
}

.chat-body {
    background: #ECE5DD;
    padding: 16px;
}

.chat-message {
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 12px;
    max-width: 88%;
}

.chat-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #222 !important;
}

.chat-message span {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #888;
    text-align: right;
}

.chat-message.received {
    background: #fff;
    border-top-left-radius: 4px;
}

.chat-message.sent {
    background: #DCF8C6;
    margin-left: auto;
    border-top-right-radius: 4px;
}

/* Mobile */

@media (max-width: 991px) {

    .slottwise-whatsapp-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .slottwise-chat-wrapper {
        margin: 0 auto;
    }

    .slottwise-whatsapp-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {

    .whatsapp-card {
        border-radius: 18px;
    }

    .chat-message p {
        font-size: 13px;
    }

    .section-desc {
        font-size: 15px;
    }
}

/* ===================================
   Slottwise Pricing
=================================== */

.slottwise-pricing-section {
    padding: 120px 0;
    background: #0D0D0D;
    border-top: 1px solid rgba(255,255,255,.05);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.pricing-header .section-label {
    color: #00D4FF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    justify-content: center;
}

.pricing-header .section-title {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 20px;
}

.pricing-header .section-desc {
    color: rgba(255,255,255,.45) !important;
    line-height: 1.8;
    font-size: 14px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    max-width: 1100px;
    margin: auto;
}

.pricing-card {
    background: #0A0A0A;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-featured {
    border-color: #7B1C2E;
    background: rgba(123,28,46,.08);
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #7B1C2E;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
}

.plan-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 18px;
}

.plan-price {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.plan-price small {
    font-size: 14px;
    color: rgba(255,255,255,.4);
    font-weight: 500;
}

.plan-users {
    font-size: 12px;
    color: rgba(255,255,255,.30);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 20px;
    margin: 15px 0 25px;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.plan-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 14px;
}

.plan-features li.included {
    color: rgba(255,255,255,.70);
}

.plan-features li.included:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D4FF;
    font-weight: 700;
    background: transparent;
}

.plan-features li.excluded {
    color: rgba(255,255,255,.25);
}

.plan-features li.excluded:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,.25);
    background: transparent;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .3s;
    margin-top: 25px;
}

.pricing-btn-outline {
    border: 1px solid rgba(255,255,255,.20);
    color: #fff;
}

.pricing-btn-outline:hover {
    border-color: rgba(255,255,255,.50);
}

.pricing-btn-primary {
    background: #7B1C2E;
    color: #fff;
}

.pricing-btn-primary:hover {
    background: #5A1320;
}

.pricing-note {
    text-align: center;
    margin-top: 35px;
    color: rgba(255,255,255,.20);
    font-size: 12px;
}

/* Mobile */

@media (max-width: 991px) {

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-featured {
        transform: none;
    }

    .slottwise-pricing-section {
        padding: 80px 0;
    }
}
.faq-section {
    background: #0A0A0A;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-tag .line {
    width: 28px;
    height: 1px;
    background: #E8570A;
}

.section-tag span:last-child {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E8570A;
}

.faq-header h2 {
    font-size: 34px;
    line-height: 0.95;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
}

.faq-header p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.45) !important;
    max-width: 600px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 16px;
    overflow: hidden;
}

.faq-card {
    background: #0D0D0D;
    padding: 40px;
    position: relative;
    transition: all .3s ease;
}

.faq-card:hover {
    background: #111111;
}

.faq-number {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,.04) !important;
    user-select: none;
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.faq-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.45) !important;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-section .container {
        padding: 0 20px;
    }

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

    .faq-card {
        padding: 30px;
    }

    .faq-number {
        font-size: 50px;
    }
}
.cta-section {
    background: #0A0A0A;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,.05);
}

.cta-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 90px 60px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(
        180deg,
        #111111 0%,
        #0D0D0D 100%
    );
}

.cta-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: rgba(0,212,255,.08);
    filter: blur(100px);
    pointer-events: none;
}

.cta-tag {
    display: inline-block;
    color: #E8570A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cta-box h2 {
    font-size: 34px;
    line-height: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.cta-box h2 span {
    color: #00D4FF;
}

.cta-box p {
    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,.5) !important;
    line-height: 1.8;
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    background: #E8570A;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.cta-stats strong {
    display: block;
    color: #00D4FF;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 5px;
}

.cta-stats span {
    color: rgba(255,255,255,.35);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.cta-trust span {
    color: rgba(255,255,255,.35);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 6px;
}


@media(max-width:768px){

    .cta-box{
        padding:60px 25px;
    }

    .cta-stats{
        grid-template-columns:repeat(2,1fr);
    }
}