/*==================================================
GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
    line-height:1.6;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

section{

    padding:90px 0;

}

/*==================================================
COMMON
==================================================*/

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    margin-bottom:15px;
    font-weight:700;

}

.section-title p{

    color:#666;
    font-size:17px;

}

/*==================================================
BUTTONS
==================================================*/

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#ff4d6d;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    border:none;

    cursor:pointer;

}

.btn-primary:hover{

    background:#e63c5b;
    transform:translateY(-3px);

}

.btn-outline{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border:2px solid #ff4d6d;

    color:#ff4d6d;

    padding:15px 34px;

    border-radius:50px;

    transition:.3s;

}

.btn-outline:hover{

    background:#ff4d6d;
    color:#fff;

}

.full{

    width:100%;

}

/*==================================================
HEADER
==================================================*/

.header{

    position:fixed;

    left:0;
    top:0;
    width:100%;

    background:#fff;

    z-index:999;

    box-shadow:0 4px 20px rgba(0,0,0,.08);

}

.header .container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:34px;

    font-weight:800;

    color:#111;

}

.logo span{

    color:#ff4d6d;

}

.navbar{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a,

.dropdown-menu a{

    color:#222;

    font-weight:500;

    transition:.3s;

}

.navbar a:hover,

.dropdown-menu a:hover,

.navbar a.current,

.dropdown-menu a.current,

.dropdown-toggle.current{

    color:#ff4d6d;

}

.dropdown{

    position:relative;

}

.dropdown-toggle{

    display:inline-flex;

    align-items:center;

    gap:6px;

    position:relative;

    padding-right:18px;

}

.dropdown-toggle::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    transform:translateY(-50%);

    width:0;

    height:0;

    border-left:5px solid transparent;

    border-right:5px solid transparent;

    border-top:5px solid currentColor;

    transition:.3s;

}

.dropdown:hover .dropdown-toggle::after,

.dropdown:focus-within .dropdown-toggle::after{

    transform:translateY(-50%) rotate(180deg);

}

.dropdown-menu{

    position:absolute;

    top:calc(100% + 12px);

    left:0;

    min-width:210px;

    padding:14px 16px;

    background:#fff;

    border:1px solid #f0f0f0;

    border-radius:12px;

    box-shadow:0 16px 35px rgba(0,0,0,.12);

    display:grid;

    gap:8px;

    opacity:0;

    visibility:hidden;

    transform:translateY(8px);

    transition:.3s ease;

    z-index:1000;

}

.dropdown:hover .dropdown-menu,

.dropdown:focus-within .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu a{

    display:block;

    padding:6px 0;

}

.dropdown-menu a:hover{

    padding-left:4px;

}

.navbar a.current,

.dropdown-menu a.current,

.dropdown-toggle.current{

    font-weight:700;

    display:flex;

    align-items:center;

    gap:20px;

}

.call-btn{

    background:#ff4d6d;

    color:#fff;

    padding:12px 24px;

    border-radius:40px;

    font-weight:600;

}

.menu-btn{

    display:none;

    border:none;

    background:none;

    font-size:24px;

    cursor:pointer;

}

/*==================================================
HERO
==================================================*/

.hero{

    padding-top:150px;
    padding-bottom:80px;

    background:linear-gradient(135deg,#fff7f8,#ffe5ec);

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#fff;

    color:#ff4d6d;

    padding:10px 18px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.hero-price{

    display:inline-flex;
    align-items:baseline;
    gap:8px;

    background:#fff;
    color:#222;

    padding:12px 18px;

    border-radius:8px;

    font-size:20px;
    font-weight:600;

    margin-bottom:22px;

    box-shadow:0 12px 30px rgba(255,77,109,.16);

}

.hero-price strong{

    color:#ff4d6d;
    font-size:34px;
    line-height:1;

}

.hero h1 span{

    color:#ff4d6d;

}

.hero p{

    font-size:18px;

    color:#555;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-stats{

    display:flex;

    gap:20px;

    margin-top:38px;

}

.hero-stats div{

    min-width:145px;

    background:rgba(255,255,255,.78);

    padding:16px 18px;

    border-radius:8px;

    box-shadow:0 10px 28px rgba(0,0,0,.06);

}

.hero-stats h3{

    font-size:30px;

    color:#ff4d6d;
    line-height:1.15;

}

.hero-stats p{

    font-size:14px;
    margin-bottom:0;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;

    border-radius:8px;

    box-shadow:0 28px 70px rgba(85,24,38,.22);

    animation:float 4s ease infinite;

}

.hero-card{

    position:absolute;
    left:-24px;
    bottom:32px;

    display:flex;
    flex-direction:column;
    gap:2px;

    max-width:260px;

    background:#fff;
    color:#222;

    padding:18px 20px;

    border-radius:8px;

    box-shadow:0 20px 45px rgba(0,0,0,.16);

}

.hero-card span{

    color:#777;
    font-size:13px;
    font-weight:500;

}

.hero-card strong{

    color:#ff4d6d;
    font-size:20px;
    line-height:1.25;

}

/*==================================================
SERVICE LANDING PAGES
==================================================*/

.service-page-hero{

    padding-top:150px;
    padding-bottom:70px;

    background:linear-gradient(135deg,#fff7f8,#ffe9ef);

}

.service-page-wrap{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:52px;

    align-items:center;

}

.service-page-hero h1{

    font-size:54px;
    line-height:1.15;
    margin-bottom:20px;
    font-weight:800;

}

.service-page-hero h1 span{

    color:#ff4d6d;

}

.service-page-hero p{

    color:#555;
    font-size:18px;
    margin-bottom:28px;

}

.service-hero-image{

    position:relative;

}

.service-hero-image img{

    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;

    border-radius:8px;

    box-shadow:0 24px 60px rgba(85,24,38,.2);

}

.service-proof-row{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:14px;

    margin:28px 0;

}

.service-proof-row div,
.service-package,
.service-include-card,
.area-chip{

    background:#fff;

    border:1px solid #f1d7de;
    border-radius:8px;

}

.service-proof-row div{

    padding:16px;

}

.service-proof-row strong{

    display:block;
    color:#ff4d6d;
    font-size:22px;

}

.service-proof-row span{

    color:#666;
    font-size:13px;

}

.service-packages,
.service-includes,
.service-areas{

    background:#fff;

}

.service-package-grid,
.service-include-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.service-package{

    padding:26px;

    box-shadow:0 14px 34px rgba(0,0,0,.06);

}

.service-package h3{

    font-size:24px;
    margin-bottom:12px;

}

.service-package .package-price{

    color:#ff4d6d;
    font-size:32px;
    font-weight:800;
    margin-bottom:8px;

}

.service-package p{

    color:#666;
    margin-bottom:18px;

}

.service-package ul{

    margin-bottom:24px;

}

.service-package li{

    display:flex;
    gap:10px;

    color:#444;
    margin-bottom:10px;
    list-style:none;
    align-items:flex-start;

}

.service-package li::before{

    content:"\2713";
    color:#ff4d6d;
    font-weight:800;
    flex-shrink:0;
    line-height:1;

}

.service-include-card{

    padding:26px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.service-include-card i{

    color:#ff4d6d;
    font-size:36px;
    margin-bottom:14px;

}

.service-include-card h3{

    font-size:21px;
    margin-bottom:8px;

}

.service-include-card p{

    color:#666;

}

.area-list{

    display:flex;
    flex-wrap:wrap;
    gap:12px;

    justify-content:center;

}

.area-chip{

    color:#444;
    padding:12px 18px;
    font-weight:600;

}

/*==================================================
TRUST SIGNALS
==================================================*/

.trust-strip{

    padding:30px 0;

    background:#fff;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:18px;

}

.trust-item{

    min-height:150px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:8px;

    background:#fff;

    padding:22px;

    border:1px solid #f1d7de;
    border-radius:8px;

    box-shadow:0 10px 28px rgba(0,0,0,.05);

}

.trust-item i{

    color:#ff4d6d;
    font-size:28px;

}

.trust-item strong{

    color:#222;
    font-size:17px;
    line-height:1.3;

}

.trust-item span{

    color:#666;
    font-size:14px;
    line-height:1.45;

}

/*==================================================
CATEGORY
==================================================*/

.categories{

    background:linear-gradient(180deg,#fff 0%,#fff8fb 100%);

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:24px;

}

.category-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:16px;

    background:#fff;

    padding:26px 22px;

    text-align:center;

    border:1px solid #f7dce5;

    border-radius:24px;

    box-shadow:0 12px 30px rgba(255,77,109,.08);

    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;

    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(255,77,109,.16);

    border-color:#ff4d6d;

}

.category-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:92px;

    height:92px;

    border-radius:50%;

    background:rgba(255,77,109,.08);

    padding:12px;

}

.category-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

}

.category-content{

    width:100%;

}

.category-card h3{

    font-size:20px;

    margin-bottom:6px;

    color:#222;

}

.category-card p{

    font-size:14px;

    color:#777;

    line-height:1.5;

    margin-bottom:10px;

}

.category-link{

    display:inline-flex;

    align-items:center;

    gap:6px;

    font-size:13px;

    font-weight:600;

    color:#ff4d6d;

}

.category-link::after{

    content:'→';

    transition:transform .3s ease;

}

.category-card:hover .category-link::after{

    transform:translateX(3px);

}

@media(max-width:768px){

    .category-grid{

        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:18px;

    }

}

@media(max-width:480px){

    .category-grid{

        grid-template-columns:1fr;

    }

    .category-card{

        padding:22px 18px;

    }

}

/*==================================================
ANIMATION
==================================================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}/*==================================================
FEATURED SERVICES
==================================================*/

.services{

    background:#fafafa;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.service-image{

    position:relative;

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.4s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-badge{

    position:absolute;

    left:20px;

    top:20px;

    background:#ff4d6d;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.service-content{

    padding:30px;

}

.service-content h3{

    font-size:26px;

    margin-bottom:15px;

}

.rating{

    color:#ffb400;

    font-size:16px;

    margin-bottom:18px;

}

.rating span{

    color:#666;

    margin-left:8px;

}

.service-meta{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;

    margin-bottom:18px;

}

.service-meta span{

    min-height:44px;

    display:flex;
    align-items:center;
    gap:8px;

    background:#fff6f8;
    color:#333;

    padding:10px 12px;

    border-radius:8px;

    font-size:14px;
    font-weight:600;

}

.service-meta i{

    color:#ff4d6d;

}

.service-content p{

    color:#666;

    margin-bottom:25px;

}

.price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.old-price{

    color:#999;

    text-decoration:line-through;

    font-size:18px;

}

.price{

    font-size:32px;

    color:#ff4d6d;

    font-weight:700;

}

/*==================================================
PRICING
==================================================*/

.pricing{

    background:#fff;

}

.pricing-table{

    max-width:900px;

    margin:auto;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.table-head{

    background:#ff4d6d;

    color:#fff;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    padding:22px 30px;

    font-weight:700;

}

.table-row{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    padding:20px 30px;

    border-bottom:1px solid #eee;

    transition:.3s;

}

.table-row:hover{

    background:#fff5f7;

}

.table-row:last-child{

    border:none;

}

.table-row div{

    display:flex;

    align-items:center;

}

.table-row del{

    color:#999;

}

.pricing-note{

    margin-top:35px;

    text-align:center;

    color:#444;

    font-size:18px;

}

.pricing-note i{

    color:#22c55e;

    margin-right:8px;

}

/*==================================================
CARD BUTTONS
==================================================*/

.service-card .btn-primary{

    width:100%;

    justify-content:center;

}

.service-card .btn-primary:hover{

    letter-spacing:.5px;

}

/*==================================================
HOVER EFFECTS
==================================================*/

.category-card,
.service-card{

    will-change:transform;

}

.category-card:hover h3{

    color:#ff4d6d;

}

.service-card:hover h3{

    color:#ff4d6d;

}

/*==================================================
SECTION BACKGROUNDS
==================================================*/

.services::before{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#ff4d6d;

    margin:0 auto 50px;

    border-radius:10px;

}

.pricing::before{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#ff4d6d;

    margin:0 auto 50px;

    border-radius:10px;

}/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{

    background:#fff8fa;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.07);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

}

.why-card i{

    font-size:52px;

    color:#ff4d6d;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#666;

}

/*==================================================
HOW IT WORKS
==================================================*/

.how-it-works{

    background:#ffffff;

}

.steps{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));

    gap:35px;

}

.step{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    position:relative;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);

}

.step-number{

    position:absolute;

    right:20px;

    top:20px;

    width:38px;

    height:38px;

    background:#ff4d6d;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:bold;

}

.step i{

    font-size:55px;

    color:#ff4d6d;

    margin-bottom:25px;

}

.step h3{

    margin-bottom:15px;

}

.step p{

    color:#666;

}

/*==================================================
COUNTER
==================================================*/

.counter{

    background:linear-gradient(135deg,#ff4d6d,#ff7b9c);

    color:#fff;

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    text-align:center;

}

.counter h2{

    font-size:56px;

    margin-bottom:10px;

    font-weight:700;

}

.counter p{

    font-size:18px;

}

/*==================================================
TESTIMONIALS
==================================================*/

.testimonials{

    background:#fafafa;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#ffc107;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.testimonial-card h4{

    color:#ff4d6d;

    margin-bottom:5px;

}

.testimonial-card span{

    color:#888;

}

/*==================================================
BEFORE AFTER
==================================================*/

.before-after{

    background:#fff;

}

.before-after-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.before-after-card{

    background:#fff;

    border:1px solid #f0dce1;
    border-radius:8px;

    padding:20px;

    box-shadow:0 15px 38px rgba(0,0,0,.07);

}

.comparison-images{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:14px;

    margin-bottom:22px;

}

.comparison-images figure{

    position:relative;

    overflow:hidden;

    border-radius:8px;

}

.comparison-images img{

    width:100%;
    height:280px;
    object-fit:cover;

}

.comparison-images figcaption{

    position:absolute;
    left:12px;
    top:12px;

    background:rgba(255,255,255,.92);
    color:#ff4d6d;

    padding:6px 12px;

    border-radius:30px;

    font-size:13px;
    font-weight:700;

}

.before-after-card h3{

    font-size:24px;
    margin-bottom:8px;

}

.before-after-card p{

    color:#666;

}

/*==================================================
GALLERY
==================================================*/

.gallery{

    background:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:18px;

    transition:.35s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

/*==================================================
SECTION DECORATION
==================================================*/

.why-us::before,
.how-it-works::before,
.testimonials::before,
.gallery::before{

    content:"";

    display:block;

    width:80px;

    height:4px;

    background:#ff4d6d;

    margin:0 auto 50px;

    border-radius:30px;

}/*==================================================
FAQ
==================================================*/

.faq{
    background:#fafafa;
}

.faq-item{
    background:#fff;
    padding:25px 30px;
    border-radius:16px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.faq-item h3{
    margin-bottom:12px;
    color:#222;
    font-size:22px;
}

.faq-item p{
    color:#666;
    line-height:1.7;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.related-services{
    padding:60px 0 40px;
}

.service-card-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.service-card{
    display:block;
    padding:26px 24px;
    border:1px solid #eee;
    border-radius:18px;
    background:#fff;
    text-decoration:none;
    color:#222;
    transition:.25s;
}

.service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 32px rgba(0,0,0,.08);
    border-color:#ff4d6d;
}

.service-card h3{
    font-size:20px;
    margin-bottom:10px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}

@media (max-width: 992px) {
    .faq-grid,
    .service-card-grid{
        grid-template-columns:1fr;
    }
}

/*==================================================
CONTACT
==================================================*/

.contact{
    background:#fff7f9;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
}

.contact-info{

    background:#ff4d6d;

    color:#fff;

    padding:40px;

    border-radius:20px;

}

.contact-info h3{

    font-size:30px;

    margin-bottom:25px;

}

.contact-info p{

    margin-bottom:20px;

    display:flex;

    align-items:center;

    gap:12px;

}

.contact-form{

    display:grid;

    gap:20px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    outline:none;

}

.contact-form textarea{

    resize:none;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#111;

    color:#fff;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    margin-bottom:40px;

}

.footer h3{

    font-size:32px;

    margin-bottom:20px;

}

.footer h3 span{

    color:#ff4d6d;

}

.footer h4{

    margin-bottom:20px;

}

.footer p{

    color:#bbb;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#bbb;

    transition:.3s;

}

.footer a:hover{

    color:#ff4d6d;

}

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#222;

    color:#fff;

    transition:.3s;

}

.social-links a:hover{

    background:#ff4d6d;

}

.footer-bottom{

    border-top:1px solid #333;

    padding-top:25px;

    text-align:center;

    color:#999;

}

/*==================================================
FLOATING BUTTONS
==================================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:95px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:999;

}

.sticky-book-btn{

    display:none;

}

.mobile-bottom-nav{

    display:none;

}

.call-float{

    position:fixed;

    right:25px;

    bottom:20px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#ff4d6d;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:999;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.hero-wrapper,
.contact-wrapper,
.before-after-grid,
.service-page-wrap{

grid-template-columns:1fr;

}

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

.service-package-grid,
.service-include-grid{

grid-template-columns:1fr;

}

.service-page-hero{

text-align:center;

}

.service-proof-row{

max-width:680px;
margin-left:auto;
margin-right:auto;

}

.hero{

text-align:center;

}

.hero-image{

max-width:560px;
margin:0 auto;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.navbar{

display:none;

}

.menu-btn{

display:block;

}

}

@media(max-width:768px){

section{

padding:70px 0;

}

body{

padding-bottom:148px;

}

.hero h1{

font-size:42px;

}

.service-page-hero h1{

font-size:40px;

}

.hero-price{

font-size:18px;

}

.hero-price strong{

font-size:30px;

}

.section-title h2{

font-size:34px;

}

.hero-stats{

flex-wrap:wrap;

gap:25px;

}

.hero-stats div{

min-width:150px;

}

.footer-grid{

grid-template-columns:1fr;

}

.service-grid,
.gallery-grid,
.why-grid,
.steps,
.counter-grid,
.testimonial-grid{

grid-template-columns:1fr;

}

.table-head,
.table-row{

grid-template-columns:2fr 1fr 1fr;

font-size:14px;

}

.whatsapp-float,
.call-float{

width:58px;
height:58px;

font-size:24px;

}

.service-card .btn-primary,
.contact-form .btn-primary,
.sticky-book-btn,
.mobile-bottom-nav a{

min-height:52px;

}

.sticky-book-btn{

position:fixed;
left:16px;
right:16px;
bottom:78px;

display:flex;
align-items:center;
justify-content:center;
gap:10px;

background:#ff4d6d;
color:#fff;

border-radius:8px;

font-size:17px;
font-weight:700;

box-shadow:0 14px 32px rgba(255,77,109,.34);

z-index:1000;

}

.mobile-bottom-nav{

position:fixed;
left:0;
right:0;
bottom:0;

display:grid;
grid-template-columns:repeat(4,1fr);

background:#fff;

border-top:1px solid #eee;

box-shadow:0 -10px 28px rgba(0,0,0,.08);

z-index:999;

}

.mobile-bottom-nav a{

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:3px;

color:#555;

font-size:12px;
font-weight:600;

padding:8px 4px 10px;

}

.mobile-bottom-nav i{

font-size:19px;

}

.mobile-bottom-nav .nav-book{

color:#ff4d6d;

}

.whatsapp-float{

right:18px;
bottom:150px;

}

.call-float{

display:none;

}

}

@media(max-width:480px){

.hero{

padding-top:140px;
padding-bottom:60px;

}

.trust-grid{

grid-template-columns:1fr;

}

.service-proof-row{

grid-template-columns:1fr;

}

.service-page-hero{

padding-top:135px;
padding-bottom:55px;

}

.service-page-hero h1{

font-size:33px;

}

.trust-item{

min-height:0;

}

.service-card .btn-primary,
.contact-form .btn-primary,
.sticky-book-btn,
.mobile-bottom-nav a{

min-height:52px;

}

.sticky-book-btn{

position:fixed;
left:16px;
right:16px;
bottom:78px;

display:flex;
align-items:center;
justify-content:center;
gap:10px;

background:#ff4d6d;
color:#fff;

border-radius:8px;

font-size:17px;
font-weight:700;

box-shadow:0 14px 32px rgba(255,77,109,.34);

z-index:1000;

}

.mobile-bottom-nav{

position:fixed;
left:0;
right:0;
bottom:0;

display:grid;
grid-template-columns:repeat(4,1fr);

background:#fff;

border-top:1px solid #eee;

box-shadow:0 -10px 28px rgba(0,0,0,.08);

z-index:999;

}

.mobile-bottom-nav a{

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:3px;

color:#555;

font-size:12px;
font-weight:600;

padding:8px 4px 10px;

}

.mobile-bottom-nav i{

font-size:19px;

}

.mobile-bottom-nav .nav-book{

color:#ff4d6d;

}

.whatsapp-float{

right:18px;
bottom:150px;

}

.call-float{

display:none;

}

.hero h1{

font-size:34px;

}

.hero-price{

width:100%;
justify-content:center;
font-size:16px;

}

.hero-price strong{

font-size:28px;

}

.hero-stats{

gap:12px;

}

.hero-stats div{

width:100%;
min-width:0;

}

.service-meta{

grid-template-columns:1fr;

}

.comparison-images{

gap:10px;

}

.comparison-images img{

height:210px;

}

.hero-stats h3{

font-size:26px;

}

.hero-card{

left:14px;
right:14px;
bottom:18px;
max-width:none;

}

.btn-primary,
.btn-outline{

width:100%;

}

.logo{

font-size:28px;

}

.call-btn{

display:none;

}

.table-head,
.table-row{

padding:15px;

}

}/* Toast */

.toast{

position:fixed;

top:30px;

right:30px;

background:#ff4d6d;

color:#fff;

padding:16px 25px;

border-radius:12px;

opacity:0;

transform:translateY(-20px);

transition:.3s;

z-index:99999;

box-shadow:0 10px 25px rgba(0,0,0,.2);

}

.toast.show{

opacity:1;

transform:translateY(0);

}

/* Scroll Animation */

.hidden{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.show{

opacity:1;

transform:none;

}

/* Mobile Menu */

.navbar.active{

display:flex;

flex-direction:column;

position:absolute;

left:0;

right:0;

top:80px;

background:#fff;

padding:25px;

box-shadow:0 15px 30px rgba(0,0,0,.08);

}

/* Active Link */

.current{

color:#ff4d6d !important;

font-weight:700;

}

/* Sticky */

.header.sticky{

box-shadow:0 10px 30px rgba(0,0,0,.12);

}
