:root{
  --bg:#f6fbff; --card:#ffffff; --muted:#6b7b88; --ink:#0b2b3a;
  --accent:#0b74a5; --accent-2:#ffb74d; --glass:rgba(11,43,58,0.04);
  --shadow:0 8px 20px rgba(11,43,58,0.08); --radius:12px; --max-width:1120px;
  --container-pad:20px;
}

/* Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font-family:Inter,system-ui,-apple-system,'Segoe UI',Roboto,Arial;line-height:1.5}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{max-width:var(--max-width);margin:0 auto;padding:0 var(--container-pad)}

/* Topbar & Nav */
.topbar{background:linear-gradient(90deg,var(--accent),#077aa0);color:#fff;text-align:center;padding:9px 14px;font-weight:700;border-bottom:1px solid rgba(11,43,58,0.06)}
.nav{position:sticky;top:0;z-index:60;background:rgba(255,255,255,0.95);backdrop-filter:blur(4px);border-bottom:1px solid rgba(11,43,58,0.06)}
.nav .inner{display:flex;align-items:center;justify-content:space-between;height:72px;max-width:var(--max-width);margin:0 auto;padding:0 var(--container-pad)}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{height:44px;border-radius:8px;box-shadow:var(--shadow)}
.brand-name{font-weight:800;font-size:18px}
.brand-tag{font-size:13px;color:var(--muted)}

/* Buttons */
.btn{display:inline-block;padding:12px 16px;border-radius:10px;background:var(--accent);color:#fff;font-weight:700;box-shadow:var(--shadow);border:none}
.btn.primary{background:linear-gradient(90deg,var(--accent),#077aa0);color:#fff}
.btn-wa{background:linear-gradient(90deg,#1fb954,#0a8f3b);color:#fff;border-radius:10px;padding:10px 14px;font-weight:800}
.btn.outline{background:transparent;border:2px solid var(--accent);color:var(--accent);padding:10px 14px;border-radius:10px}
.btn-call{background:#ff6f00;color:#fff;padding:10px;border-radius:10px}

/* Hero */
.hero{padding:32px 0}
.hero-inner{display:flex;gap:24px;align-items:flex-start}
.hero-left{flex:1}
.hero-right{flex:.9}
.badge{display:inline-block;background:#e8f6fb;color:var(--accent);padding:6px 10px;border-radius:999px;font-weight:700}
.h1, #hero_title{font-size:32px;margin:10px 0 12px;color:var(--ink)}
.lead{color:var(--muted);font-size:15px}
.location-card{background:var(--card);border-radius:var(--radius);padding:12px;box-shadow:var(--shadow);border:1px solid rgba(11,43,58,0.04)}
.row{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.select{padding:10px;border-radius:8px;border:1px solid rgba(11,43,58,0.06);background:#fff;font-size:14px}

/* gallery */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.gallery img{height:110px;object-fit:cover;border-radius:8px;border:1px solid rgba(11,43,58,0.04)}

/* trust / cards */
.trust{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:14px}
.trust-item{background:var(--card);padding:10px;border-radius:10px;text-align:center;color:var(--accent);font-weight:700;box-shadow:var(--shadow)}

/* Sections */
.section{padding:30px 0; margin:15px;}
.title{font-size:20px;margin-bottom:8px}
.muted{color:var(--muted)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.card{background:var(--card);border-radius:var(--radius);padding:14px;box-shadow:var(--shadow);border:1px solid rgba(11,43,58,0.03)}
.card h3{margin:0 0 8px;font-size:16px}
.price{font-size:20px;font-weight:900;color:var(--ink)}
.pill{display:inline-block;padding:6px 10px;background:#f1fcff;color:var(--accent);border-radius:999px;font-weight:700}

/* lists */
.list{margin:8px 0 0;padding:0;list-style:none}
.list li{margin:6px 0;padding-left:18px;position:relative;font-size:14px;color:var(--muted)}
.list li:before{content:"•";position:absolute;left:0;top:0;color:var(--accent-2)}

/* testimonials */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.testi-card{display:flex;gap:12px;background:var(--card);padding:12px;border-radius:10px;align-items:center;box-shadow:var(--shadow)}
.testi-card img{width:64px;height:64px;border-radius:8px;object-fit:cover}

/* certificate */
#cert_wrap{background:#fff;padding:12px;border-radius:10px;box-shadow:var(--shadow);overflow-x:auto}
#cert_wrap svg{max-width:100%;height:auto;display:block}

/* faq */
.faq .faq-item{background:var(--card);border-radius:10px;padding:12px;margin-bottom:10px;box-shadow:var(--shadow)}
.faq summary{font-weight:700;cursor:pointer}
.cta-inline{display:inline-block;margin-top:10px;padding:8px 12px;border-radius:8px;background:linear-gradient(90deg,var(--accent),#077aa0);color:#fff;font-weight:800}

/* CTA & footer */
.cta{background:linear-gradient(180deg,#f6fbff, #e9f7fb);text-align:center;padding:28px 12px;border-top:1px solid rgba(11,43,58,0.03)}
.footer{padding:20px 0;border-top:1px solid rgba(11,43,58,0.03);color:var(--muted)}
.footer-grid{display:flex;justify-content:space-between;align-items:center;gap:10px}

/* floatbar */
.floatbar{position:fixed;left:0;right:0;bottom:0;background:linear-gradient(90deg,#fff,#f2fbff);border-top:1px solid rgba(11,43,58,0.04);z-index:80}
.floatbar .wrap{display:grid;grid-template-columns:1fr 1fr;gap:8px;padding:10px;max-width:var(--max-width);margin:0 auto;padding-left:var(--container-pad);padding-right:var(--container-pad)}

/* Responsive */
@media (max-width:980px){
  .hero-inner{flex-direction:column}
  .cards{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(3,1fr)}
  .trust{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .brand-logo{height:36px}
  .hero-right{order:2}
  .hero-left{order:1}
  .h1{font-size:20px}
  .gallery img{height:88px}
  .floatbar .wrap{grid-template-columns:1fr;gap:8px;padding:12px}
  .container{padding-left:16px;padding-right:16px}
  .section{padding:18px 0}
}

.premium-section{

    padding:80px 0;

    background:
    linear-gradient(
        135deg,
        #fff6f8,
        #ffeef3
    );

    overflow:hidden;
}

.premium-content{

    max-width:1200px;

    margin:auto;

    padding:0 30px;

    display:flex;

    align-items:center;

    gap:60px;
}

.premium-text{

    flex:1;

    animation:
    slideLeft 1s ease;
}

.premium-image{

    flex:1;

    animation:
    slideRight 1s ease;
}

.premium-image img{

    width:100%;

    max-width:600px;

    height:400px;

    object-fit:cover;

    border-radius:5px;

    box-shadow:
    0 20px 60px
    rgba(0,0,0,.15);

    transition:.4s;
}

.premium-image img:hover{

    transform:
    scale(1.04)
    rotate(-1deg);
}

.premium-badge{

    display:inline-block;

    background:#fff;

    color:#d81b60;

    padding:10px 18px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:20px;

    box-shadow:
    0 5px 20px
    rgba(216,27,96,.15);
}

.premium-text h2{

    font-size:48px;

    line-height:1.2;

    margin-bottom:20px;

    color:#222;
}

.premium-text p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:25px;
}

.premium-text ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;
}

.premium-text li{

    margin-bottom:12px;

    font-size:16px;

    color:#444;
}

.premium-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.btn-wa{

    background:
    linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

    color:#fff;

    padding:15px 28px;

    border-radius:14px;

    font-weight:700;
}

.btn-call{

    background:
    linear-gradient(
        135deg,
        #d81b60,
        #ff4081
    );

    color:#fff;

    padding:15px 28px;

    border-radius:14px;

    font-weight:700;
}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:
        translateX(-60px);
    }

    to{

        opacity:1;

        transform:
        translateX(0);
    }
}

@keyframes slideRight{

    from{

        opacity:0;

        transform:
        translateX(60px);
    }

    to{

        opacity:1;

        transform:
        translateX(0);
    }
}

@media(max-width:768px){

    .premium-content{

        flex-direction:column;

        gap:30px;

        padding:0 20px;
    }

    .premium-image{

        order:1;
    }

    .premium-text{

        order:2;
    }

    .premium-text h2{

        font-size:32px;
    }

    .premium-image img{

        height:260px;
    }

    .premium-buttons{

        flex-direction:column;
    }

}

.hero-premium{


position:relative;

overflow:hidden;

padding:100px 0;

background:

linear-gradient(
    135deg,
    #ffffff 0%,
    #fff6fa 50%,
    #fffdf8 100%
);


}

.hero-blur{

position:absolute;

border-radius:50%;

filter:blur(120px);

opacity:.5;

}

.blur-1{

width:400px;
height:400px;

background:#ff4081;

top:-150px;
left:-150px;

}

.blur-2{

width:500px;
height:500px;

background:#ff9800;

right:-200px;
bottom:-200px;


}

.hero-grid{


display:grid;

grid-template-columns:
1.1fr 1fr;

gap:70px;

align-items:center;

position:relative;

z-index:2;


}

.hero-label{


display:inline-flex;

align-items:center;

gap:8px;

padding:12px 20px;

background:#fff;

border-radius:999px;

font-weight:700;

box-shadow:
0 10px 30px rgba(0,0,0,.08);


}

.hero-content h1{


font-size:72px;

line-height:1;

margin:25px 0;

color:#111827;

font-weight:900;

letter-spacing:-2px;


}

.hero-content p{


font-size:19px;

line-height:1.9;

color:#6b7280;

max-width:700px;


}

.hero-buttons{


display:flex;

gap:15px;

margin-top:35px;

flex-wrap:wrap;


}

.hero-btn-primary{


padding:18px 35px;

border-radius:16px;

background:
linear-gradient(
    135deg,
    #e91e63,
    #ff4081
);

color:white;

font-weight:800;

box-shadow:
0 15px 40px rgba(233,30,99,.25);

transition:.3s;


}

.hero-btn-secondary{


padding:18px 35px;

border-radius:16px;

background:white;

color:#111827;

font-weight:800;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.3s;


}

.hero-btn-primary:hover,
.hero-btn-secondary:hover{


transform:
translateY(-5px);


}

.hero-stats{


display:flex;

gap:25px;

margin-top:40px;

flex-wrap:wrap;


}

.stat{


background:#fff;

padding:18px 22px;

border-radius:18px;

box-shadow:
0 10px 30px rgba(0,0,0,.06);

min-width:120px;


}

.stat strong{


display:block;

font-size:24px;

color:#111827;


}

.stat span{


color:#6b7280;

font-size:14px;


}

.hero-image-wrapper{


position:relative;


}

.hero-image{


width:100%;

max-width:600px;

height:400px;

object-fit:cover;

border-radius:30px;

box-shadow:
0 30px 80px rgba(0,0,0,.15);

animation:
floating 6s ease-in-out infinite;


}

.floating-card{


position:absolute;

background:white;

padding:14px 18px;

border-radius:14px;

font-weight:700;

box-shadow:
0 15px 35px rgba(0,0,0,.12);

z-index:5;


}

.top-card{


top:-20px;
left:-20px;


}

.bottom-card{


right:-20px;
bottom:20px;


}

@keyframes floating{


0%{
    transform:translateY(0);
}

50%{
    transform:translateY(-15px);
}

100%{
    transform:translateY(0);
}


}

@media(max-width:991px){


.hero-grid{

    grid-template-columns:1fr;
}

.hero-content{

    order:2;
}

.hero-image-wrapper{

    order:1;
}

.hero-content h1{

    font-size:42px;
}

.hero-image{

    height:280px;
}

.top-card,
.bottom-card{

    position:relative;

    display:inline-block;

    margin-top:15px;

    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
}


}

.about-modern{


padding:120px 0;


}

.about-wrapper{


display:grid;

grid-template-columns:
1fr 1fr;

gap:70px;

align-items:center;


}

.about-image{


position:relative;


}

.about-image img{


width:100%;

max-width:600px;

height:400px;

object-fit:cover;

border-radius:30px;

box-shadow:
0 30px 80px rgba(0,0,0,.15);


}

.about-badge{


position:absolute;

left:-20px;

bottom:30px;

background:white;

padding:14px 20px;

border-radius:16px;

font-weight:700;

box-shadow:
0 15px 40px rgba(0,0,0,.12);


}

.about-label{


display:inline-block;

padding:10px 18px;

border-radius:999px;

background:#ffe8f0;

color:#e91e63;

font-weight:700;

margin-bottom:20px;


}

.about-content h2{


font-size:48px;

line-height:1.15;

margin-bottom:20px;

color:#111827;


}

.about-content p{


font-size:17px;

line-height:1.9;

color:#6b7280;

margin-bottom:30px;


}

.about-stats{


display:flex;

gap:20px;

margin-bottom:30px;

flex-wrap:wrap;


}

.about-stat{


background:white;

padding:18px 22px;

border-radius:18px;

box-shadow:
0 10px 30px rgba(0,0,0,.06);


}

.about-stat strong{


display:block;

font-size:28px;

color:#111827;


}

.about-stat span{


font-size:14px;

color:#6b7280;


}

.about-list{


list-style:none;

padding:0;

margin:0 0 30px;


}

.about-list li{


margin-bottom:12px;

position:relative;

padding-left:30px;


}

.about-list li::before{


content:"✓";

position:absolute;

left:0;

color:#22c55e;

font-weight:bold;


}

.about-btn{


display:inline-block;

padding:16px 28px;

background:
linear-gradient(
    135deg,
    #e91e63,
    #ff4081
);

color:white;

border-radius:14px;

font-weight:800;


}

@media(max-width:991px){

.about-wrapper{


grid-template-columns:1fr;

gap:35px;


}

.about-content h2{


font-size:34px;


}

.about-image img{


height:260px;


}

.about-badge{


left:15px;
bottom:15px;


}

}

.gallery-section{


padding:120px 0;

background:
linear-gradient(
    180deg,
    #ffffff,
    #fafafa
);


}

.section-header{


text-align:center;

max-width:700px;

margin:auto auto 60px;


}

.gallery-label{


display:inline-block;

padding:10px 18px;

border-radius:999px;

background:#ffe8f0;

color:#e91e63;

font-weight:700;

margin-bottom:15px;


}

.section-header h2{


font-size:48px;

margin-bottom:15px;

color:#111827;

font-weight:900;


}

.section-header p{


color:#6b7280;

font-size:17px;

line-height:1.8;


}

.gallery-grid{


display:grid;

grid-template-columns:
repeat(3,1fr);

gap:25px;


}

.gallery-grid img{


width:100%;

height:280px;

object-fit:cover;

border-radius:24px;

cursor:pointer;

transition:.4s;

box-shadow:
0 15px 40px rgba(0,0,0,.08);


}

.gallery-grid img:hover{


transform:
translateY(-8px)
scale(1.03);

box-shadow:
0 30px 70px rgba(0,0,0,.15);


}

/* TABLET */

@media(max-width:991px){

.gallery-grid{


grid-template-columns:
repeat(2,1fr);


}

}

/* MOBILE */

@media(max-width:640px){

.gallery-section{


padding:80px 0;


}

.section-header h2{


font-size:32px;


}

.gallery-grid{


grid-template-columns:1fr;

gap:15px;


}

.gallery-grid img{


height:220px;

border-radius:18px;


}

}
.closing-section{


padding:120px 0;

background:
linear-gradient(
    135deg,
    #fff7fa,
    #ffffff
);


}

.closing-wrapper{


display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;


}

.closing-image img{


width:100%;

max-width:600px;

height:400px;

object-fit:cover;

border-radius:28px;

box-shadow:
0 25px 60px rgba(0,0,0,.12);


}

.closing-badge{


display:inline-block;

background:#ffe6ef;

color:#e91e63;

padding:10px 18px;

border-radius:999px;

font-weight:700;

margin-bottom:20px;


}

.closing-content h2{


font-size:48px;

line-height:1.1;

margin-bottom:20px;

font-weight:900;


}

.closing-content p{


color:#6b7280;

line-height:1.9;

margin-bottom:25px;


}

.closing-list{


margin-bottom:30px;


}

.closing-list li{


margin-bottom:10px;


}

.closing-buttons{


display:flex;

gap:15px;

flex-wrap:wrap;


}

.closing-btn-wa{


padding:16px 30px;

border-radius:14px;

background:#25D366;

color:white;

font-weight:700;


}

.closing-btn-call{


padding:16px 30px;

border-radius:14px;

background:#e91e63;

color:white;

font-weight:700;


}

@media(max-width:991px){

.closing-wrapper{


grid-template-columns:1fr;


}

.closing-content h2{


font-size:34px;


}

.closing-image img{


height:260px;


}

}
.footer-premium{


background:#111827;

color:white;

padding-top:70px;


}

.footer-grid{


display:grid;

grid-template-columns:
2fr 1fr 2fr 1fr;

gap:40px;

padding-bottom:50px;


}

.footer-premium h3,
.footer-premium h4{


margin-bottom:20px;


}

.footer-premium ul{


list-style:none;

padding:0;


}

.footer-premium li{


margin-bottom:12px;


}

.footer-premium a{


color:#d1d5db;


}

.footer-premium a:hover{


color:white;


}

.footer-bottom{


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

padding:25px 0;

text-align:center;

color:#9ca3af;


}

@media(max-width:991px){

.footer-grid{


grid-template-columns:1fr;

gap:30px;


}

}

.floating-cta{


position:fixed;

left:15px;
right:15px;
bottom:15px;

z-index:9999;

display:grid;

grid-template-columns:1fr 1fr;

gap:12px;


}

.floating-btn{


height:62px;

display:flex;

align-items:center;

justify-content:center;

gap:10px;

border-radius:18px;

color:white;

font-size:16px;

font-weight:800;

text-decoration:none;

box-shadow:
0 10px 30px rgba(0,0,0,.15);

transition:.3s;


}

.floating-btn:hover{


transform:
translateY(-3px);


}

.call-btn{


background:
linear-gradient(
    135deg,
    #ff6f00,
    #ff9800
);

animation:
pulseCall 2s infinite;


}

.wa-btn{


background:
linear-gradient(
    135deg,
    #25D366,
    #128C7E
);

animation:
pulseWa 2s infinite;


}

.icon{


font-size:20px;


}

@keyframes pulseCall{


0%{

    box-shadow:
    0 0 0 0
    rgba(255,152,0,.5);
}

70%{

    box-shadow:
    0 0 0 18px
    rgba(255,152,0,0);
}

100%{

    box-shadow:
    0 0 0 0
    rgba(255,152,0,0);
}


}

@keyframes pulseWa{


0%{

    box-shadow:
    0 0 0 0
    rgba(37,211,102,.5);
}

70%{

    box-shadow:
    0 0 0 18px
    rgba(37,211,102,0);
}

100%{

    box-shadow:
    0 0 0 0
    rgba(37,211,102,0);
}


}

@media(min-width:992px){


.floating-cta{

    max-width:450px;

    left:50%;

    transform:
    translateX(-50%);
}


}


