@charset "UTF-8";

/* ===============================
GLOBAL
=============================== */

.product-content img,
.tech-table img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ===============================
SLIDER
=============================== */

.slider-wrapper{
    position:relative;
}

.slider-wrapper::before,
.slider-wrapper::after{
    content:'';
    position:absolute;
    top:0;
    width:60px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.slider-wrapper::before{
    left:0;
    background:linear-gradient(to right,#fff,transparent);
}

.slider-wrapper::after{
    right:0;
    background:linear-gradient(to left,#fff,transparent);
}

.service-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    padding:10px 40px;
}

.service-slider::-webkit-scrollbar{
    display:none;
}

/* ===============================
SERVICE CARD
=============================== */

.service-card{
    min-width:20%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    transition:.35s ease;
    scroll-snap-align:start;
    will-change:transform;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12);
}

.service-card img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:contain;
    background:#f8fbff;
    padding:12px;
    border-bottom:1px solid #f0f0f0;
}

.card-body{
    padding:15px;
}

.card-body h5{
    font-size:15px;
    font-weight:600;
    margin-bottom:8px;
    line-height:1.5;
}

.card-body p{
    font-size:13px;
    color:#666;
    margin-bottom:12px;
    line-height:1.6;
}

.card-actions{
    display:flex;
    gap:8px;
}

.view-btn,
.wa-btn{
    flex:1;
    text-align:center;
    padding:8px;
    border-radius:8px;
    font-size:13px;
    text-decoration:none;
    transition:.3s;
}

.view-btn{
    background:#f1f1f1;
    color:#333;
}

.view-btn:hover{
    background:#e5e5e5;
}

.wa-btn{
    background:#25D366;
    color:#fff;
}

.wa-btn:hover{
    opacity:.9;
}

/* ===============================
SLIDER BUTTONS
=============================== */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    font-size:20px;
    cursor:pointer;
    z-index:3;
}

.slider-btn.left{
    left:0;
}

.slider-btn.right{
    right:0;
}

/* ===============================
PREMIUM SERVICE SECTION
=============================== */

.premium-service-section{
    background:linear-gradient(135deg,#f6fbff,#ffffff);
}

.premium-service-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    overflow:hidden;
}

.premium-title{
    font-size:34px;
    font-weight:700;
    line-height:1.3;
    margin:0 0 12px;
}

.premium-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:8px 14px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
    line-height:1.2;
}

.premium-btn img{
    width:auto;
    height:18px;
}

.premium-btn.whatsapp{
    background:#25D366;
    color:#fff;
}

.premium-btn.share{
    background:#007bff;
    color:#fff;
}

.premium-btn:hover{
    transform:translateY(-2px);
}

/* ===============================
IMAGE WRAPPER
=============================== */

.premium-image-wrapper{
    position:relative;
    background:#fff;
    border-radius:16px;
    padding:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    cursor:pointer;
    transition:.3s ease;
    will-change:transform;
}

.premium-image-wrapper:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.premium-image-wrapper img{
    width:100%;
    max-width:420px;
    height:auto;
    display:block;
    object-fit:contain;
    border-radius:12px;
}

.premium-image-wrapper::after{
    content:"🔍 Click to Zoom";
    position:absolute;
    right:14px;
    bottom:14px;
    background:rgba(0,0,0,0.75);
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:11px;
    opacity:0;
    transition:.3s;
    white-space:nowrap;
}

.premium-image-wrapper:hover::after{
    opacity:1;
}

/* ===============================
TRUST BOX
=============================== */

.service-trust-box{
    background:#fff;
    border-radius:14px;
    padding:25px;
    border:1px solid #f0f0f0;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.service-trust-box h5{
    margin-bottom:15px;
    color:#0d6efd;
    font-weight:700;
}

.trust-points{
    list-style:none;
    padding:0;
    margin:0 0 20px;
}

.trust-points li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:10px;
    font-size:15px;
}

.trust-points li::before{
    content:"✅";
    flex-shrink:0;
}

.emergency-box{
    display:flex;
    gap:12px;
}

/* ===============================
LOCATION STRIP
=============================== */

.location-trust-strip{
    background:linear-gradient(90deg,#00a79d,#007bff);
    padding:14px 0;
    margin-top:35px;
}

.trust-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
}

.trust-title{
    color:#fff;
    font-size:16px;
    font-weight:600;
}

.trust-locations{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.trust-locations a{
    background:rgba(255,255,255,0.15);
    color:#fff !important;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
    display:inline-block;
}

.trust-locations a:hover{
    background:#fff;
    color:#00a79d !important;
    transform:translateY(-2px);
}

/* ===============================
SEO SECTION
=============================== */

.premium-seo-section{
    background:linear-gradient(135deg,#f8fbff,#ffffff);
}

.seo-content-card{
    background:#fff;
    border-radius:20px;
    padding:45px;
    border:1px solid #f0f0f0;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.seo-badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#e6f7f6;
    color:#00a79d;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.seo-heading{
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
}

.seo-text{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.seo-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:20px;
}

.seo-features span{
    background:#f5f7fa;
    padding:8px 14px;
    border-radius:20px;
    border:1px solid #eee;
    font-size:14px;
    transition:.3s;
}

.seo-features span:hover{
    background:#00a79d;
    color:#fff;
}

/* ===============================
FAQ SECTION
=============================== */

.premium-faq-section{
    background:linear-gradient(135deg,#f8fbff,#ffffff);
}

.faq-title{
    font-size:32px;
    font-weight:700;
    text-align:center;
    margin-bottom:45px;
}

.faq-card{
    background:#fff;
    border-radius:16px;
    padding:22px 25px;
    margin-bottom:20px;
    border:1px solid #f1f1f1;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:.3s ease;
    will-change:transform;
}

.faq-card:hover{
    transform:translateY(-4px);
}

.faq-question{
    font-size:17px;
    font-weight:600;
    color:#0d6efd;
    margin-bottom:8px;
}

.faq-answer{
    font-size:15px;
    color:#555;
    margin:0;
    line-height:1.7;
}

/* ===============================
PREMIUM TRUST
=============================== */

.premium-trust{
    margin-top:50px;
    padding:40px 20px;
    border-radius:20px;
    text-align:center;
    color:#fff;
    background:linear-gradient(90deg,#00a79d,#007bff);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.premium-trust h3{
    margin-bottom:15px;
    font-weight:700;
}

.premium-trust p{
    max-width:800px;
    margin:auto;
    font-size:16px;
    opacity:.95;
    line-height:1.8;
}

/* ===============================
IMAGE POPUP
=============================== */

.image-popup{
    position:fixed;
    inset:0;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,0.9);
    z-index:9999;
}

.image-popup img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
    animation:zoomIn .3s ease;
}

.close-popup{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:35px;
    cursor:pointer;
}

@keyframes zoomIn{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* ===============================
TECHNICAL CONTENT
=============================== */

.tech-scroll,
.tech-table,
.sidebar-box{
    overflow:visible;
}

.tech-table,
.tech-table *{
    text-align:left;
}

.tech-table table{
    width:100%;
    border-collapse:collapse;
    table-layout:auto;
}

.tech-table td,
.tech-table th{
    padding:8px;
    font-size:14px;
    white-space:normal;
    word-break:break-word;
    overflow-wrap:anywhere;
}

.sidebar-box{
    max-height:none;
}

/* ===============================
RESPONSIVE
=============================== */

@media(max-width:992px){
    .service-card{
        min-width:45%;
    }
}

@media(max-width:768px){

    .premium-service-card{
        padding:25px;
    }

    .premium-title{
        font-size:24px;
    }

    .premium-image-wrapper{
        padding:5px;
        margin-top:10px;
    }

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

    .trust-title{
        width:100%;
        font-size:18px;
    }

    .seo-content-card{
        padding:30px 20px;
    }

    .seo-heading{
        font-size:24px;
    }

    .faq-title{
        font-size:26px;
    }
}

@media(max-width:576px){
    .service-card{
        min-width:75%;
    }

    .slider-btn{
        display:none;
    }
}


/* =========================
PREMIUM SEO INFO SECTION
========================= */

.premium-info-section{
position:relative;
padding-top:20px;
}

.premium-info-wrapper{

background:#fff;

border-radius:28px;

padding:50px 35px;

box-shadow:
0 10px 40px rgba(0,0,0,0.06);

overflow:hidden;

position:relative;
}

.premium-info-wrapper::before{

content:"";

position:absolute;

top:-120px;
right:-120px;

width:280px;
height:280px;

background:
rgba(0,167,157,0.05);

border-radius:50%;
}

.premium-info-heading h2{

font-size:36px;

font-weight:800;

color:#111;

margin-bottom:15px;
}

.premium-info-heading p{

font-size:17px;

color:#666;

max-width:850px;

margin:auto;
}

.info-badge{

display:inline-block;

background:
rgba(0,167,157,0.1);

color:#00a79d;

padding:10px 18px;

border-radius:50px;

font-weight:700;

margin-bottom:20px;
}

.premium-info-card{

background:#fff;

border-radius:22px;

padding:30px;

height:100%;

border:
1px solid rgba(0,167,157,0.08);

box-shadow:
0 5px 20px rgba(0,0,0,0.05);

transition:.3s ease;
}

.premium-info-card:hover{

transform:translateY(-6px);

box-shadow:
0 12px 35px rgba(0,0,0,0.08);
}

.info-icon{

width:65px;
height:65px;

border-radius:18px;

background:
linear-gradient(135deg,#00a79d,#00897b);

display:flex;

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

font-size:28px;

margin-bottom:22px;

color:#fff;
}

.premium-info-card h3{

font-size:24px;

font-weight:700;

margin-bottom:15px;

color:#111;
}

.premium-info-card p{

font-size:15px;

line-height:1.8;

color:#666;

margin-bottom:18px;
}

.premium-info-card ul{

padding-left:18px;

margin:0;
}

.premium-info-card ul li{

margin-bottom:10px;

color:#444;

font-weight:500;
}

/* MOBILE */

@media(max-width:767px){

.premium-info-wrapper{
padding:35px 20px;
}

.premium-info-heading h2{
font-size:28px;
}

.premium-info-card{
padding:24px;
}

}