*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f8fafc;
color:#111827;
overflow-x:hidden;
}

a{
text-decoration:none;
color:inherit;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(255,255,255,0.92);
backdrop-filter:blur(12px);
z-index:999;
box-shadow:0 4px 25px rgba(0,0,0,0.04);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:24px;
font-weight:800;
color:#0f172a;
}

.nav-links{
display:flex;
gap:28px;
font-weight:500;
}

.nav-links a:hover,
.page-link:hover{
color:#2563eb;
}

.menu-btn{
display:none;
font-size:24px;
cursor:pointer;
}

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:80%;
height:100vh;
background:#fff;
padding:50px 30px;
transition:.4s;
z-index:1000;
box-shadow:-10px 0 30px rgba(0,0,0,0.08);
}

.mobile-menu.active{
right:0;
}

.mobile-menu a{
display:block;
margin:20px 0;
font-size:20px;
}

.hero{
padding:140px 0 90px;
background:linear-gradient(135deg,#f8fafc,#e2e8f0);
}

.page-hero{
padding:150px 0 80px;
background:linear-gradient(135deg,#eff6ff,#e2e8f0);
}

.page-hero h1{
font-size:52px;
line-height:1.15;
font-weight:800;
margin:14px 0 18px;
max-width:760px;
}

.page-hero p{
font-size:18px;
line-height:1.8;
color:#475569;
max-width:760px;
}

.page-tag{
display:inline-block;
padding:10px 16px;
border-radius:999px;
background:#dbeafe;
color:#1d4ed8;
font-size:14px;
font-weight:700;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:50px;
align-items:center;
}

.hero h1{
font-size:52px;
line-height:1.15;
font-weight:800;
margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:1.8;
color:#475569;
margin-bottom:25px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:14px 26px;
border-radius:14px;
font-weight:600;
display:inline-block;
transition:.3s;
border:none;
cursor:pointer;
}

.btn-primary{
background:#2563eb;
color:white;
}

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

.btn-secondary{
background:white;
border:1px solid #dbeafe;
}

.hero-card{
background:white;
padding:30px;
border-radius:24px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.hero-card img{
width:100%;
border-radius:18px;
}

.note-line{
margin-top:20px;
font-size:15px;
}

section{
padding:90px 0;
}

.soft-section{
background:#f1f5f9;
}

.section-title{
font-size:38px;
font-weight:800;
margin-bottom:18px;
}

.section-sub{
color:#64748b;
margin-bottom:35px;
line-height:1.8;
}

.section-head-row{
display:flex;
justify-content:space-between;
align-items:flex-end;
gap:20px;
margin-bottom:24px;
}

.page-link{
font-weight:700;
color:#0f172a;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-grid img{
width:100%;
border-radius:22px;
}

.about-text p{
margin-bottom:18px;
line-height:1.9;
color:#475569;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:28px;
}

.card{
background:white;
padding:22px;
border-radius:24px;
box-shadow:0 15px 35px rgba(0,0,0,0.06);
transition:.3s;
}

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

.card img{
width:100%;
height:190px;
object-fit:cover;
border-radius:18px;
margin-bottom:18px;
}

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

.card p{
color:#475569;
line-height:1.8;
}

.simple-card{
min-height:240px;
}

.price{
font-size:22px;
font-weight:700;
color:#2563eb;
margin:12px 0;
}

.card-buttons{
display:flex;
gap:10px;
margin-top:15px;
flex-wrap:wrap;
}

.why-grid,.process-grid,.testimonial-grid,.timeline-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.box,
.timeline-card,
.contact-card-large,
.contact-form-panel,
.doc-panel{
background:white;
padding:28px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.box i{
font-size:28px;
margin-bottom:15px;
color:#2563eb;
}

.gallery{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:18px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:18px;
}

.gallery-showcase{
display:grid;
grid-template-columns:1.3fr 1fr 1fr;
gap:18px;
}

.gallery-showcase img{
width:100%;
height:260px;
object-fit:cover;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.gallery-tall{
grid-row:span 2;
height:538px !important;
}

.gallery-wide{
grid-column:span 2;
}

.cta{
background:#0f172a;
color:white;
text-align:center;
border-radius:28px;
padding:70px 30px;
}

.cta-title{
color:white;
}

.cta-copy{
margin-bottom:25px;
color:#cbd5e1;
line-height:1.8;
}

.contact-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.contact-item{
background:white;
padding:28px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
line-height:1.8;
}

.timeline-card span{
display:inline-flex;
width:48px;
height:48px;
align-items:center;
justify-content:center;
background:#dbeafe;
color:#1d4ed8;
border-radius:50%;
font-weight:700;
margin-bottom:14px;
}

.timeline-card p{
color:#475569;
line-height:1.8;
}

.two-col-layout,
.contact-layout-page{
display:grid;
grid-template-columns:1fr 1fr;
gap:28px;
align-items:start;
}

.doc-list{
display:grid;
gap:16px;
margin-top:12px;
}

.doc-list div,
.timeline-mini,
.contact-detail-list div{
display:flex;
gap:14px;
align-items:flex-start;
padding:16px 0;
border-bottom:1px solid #e2e8f0;
}

.doc-list div:last-child,
.timeline-mini:last-child,
.contact-detail-list div:last-child{
border-bottom:none;
}

.doc-list i,
.contact-detail-list i{
color:#2563eb;
font-size:18px;
margin-top:4px;
}

.timeline-stack{
display:grid;
gap:10px;
margin-top:12px;
}

.timeline-mini{
display:block;
}

.timeline-mini strong{
display:block;
margin-bottom:8px;
color:#0f172a;
}

.timeline-mini p{
color:#475569;
line-height:1.8;
}

.contact-detail-list{
margin-top:10px;
}

.contact-detail-list strong{
display:block;
margin-bottom:6px;
}

.contact-detail-list span{
color:#475569;
line-height:1.8;
}

.contact-form-grid{
display:grid;
gap:16px;
}

.contact-form-grid input,
.contact-form-grid textarea{
width:100%;
padding:16px 18px;
border:1px solid #cbd5e1;
border-radius:16px;
outline:none;
}

.site-footer{
background:#0f172a;
padding:40px 0 110px;
color:#cbd5e1;
}

.footer-grid{
display:grid;
grid-template-columns:1.2fr .8fr .8fr;
gap:30px;
}

.footer-logo{
font-size:24px;
font-weight:800;
color:white;
margin-bottom:14px;
}

.site-footer h4{
color:white;
margin-bottom:14px;
}

.site-footer a,
.site-footer span,
.site-footer p{
display:block;
margin-bottom:10px;
}

.floating-whatsapp{
position:fixed;
bottom:90px;
right:20px;
background:#25d366;
color:white;
width:58px;
height:58px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
z-index:999;
}

.mobile-call{
display:none;
position:fixed;
bottom:0;
left:0;
width:100%;
background:#2563eb;
color:white;
text-align:center;
padding:14px;
font-weight:700;
z-index:999;
}

@media(max-width:768px){

.hero-grid,
.about-grid,
.two-col-layout,
.contact-layout-page,
.footer-grid{
grid-template-columns:1fr;
}

.hero h1,
.page-hero h1{
font-size:36px;
}

.nav-links{
display:none;
}

.menu-btn{
display:block;
}

.gallery,
.gallery-showcase,
.section-head-row{
grid-template-columns:1fr;
display:grid;
}

.gallery-tall,
.gallery-wide{
grid-row:auto;
grid-column:auto;
height:250px !important;
}

.mobile-call{
display:block;
}

.site-footer{
padding-bottom:140px;
}

}
