*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#f5f7f8;
color:#16363b;
overflow-x:hidden;
line-height:1.6;
}

a{
text-decoration:none;
}

img{
max-width:100%;
display:block;
}

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

.site-header{
position:sticky;
top:0;
z-index:999;
background:rgba(7,48,52,0.86);
backdrop-filter:blur(14px);
border-bottom:1px solid rgba(255,255,255,0.06);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
min-height:92px;
}

.brand-wrap{
display:flex;
align-items:center;
gap:16px;
}

.brand-logo{
width:78px;
height:78px;
object-fit:contain;
filter:
drop-shadow(0 10px 20px rgba(0,0,0,0.10));
transition:0.3s ease;
}

.brand-logo:hover{
transform:scale(1.03);
}

.brand-title{
font-size:38px;
font-weight:800;
letter-spacing:-2px;
color:#ffffff;
line-height:1;
}

.nav-links{
display:flex;
align-items:center;
gap:30px;
}

.nav-links a{
font-size:14px;
font-weight:500;
color:#eef7f8;
position:relative;
padding-bottom:6px;
transition:0.3s ease;
}

.nav-links a::after{
content:'';
position:absolute;
left:0;
bottom:0;
width:0%;
height:2px;
background:
linear-gradient(
90deg,
transparent,
rgba(242,140,56,0.95),
transparent
);
transition:0.3s ease;
border-radius:20px;
}

.nav-links a:hover::after{
width:100%;
}

.hero{
padding:70px 0 40px;
}

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

.kicker{
display:inline-flex;
align-items:center;
gap:10px;
font-size:11px;
font-weight:700;
text-transform:uppercase;
letter-spacing:1.5px;
color:#f28c38;
margin-bottom:16px;
}

.kicker::before{
content:'';
width:18px;
height:2px;
background:#f28c38;
border-radius:20px;
opacity:0.7;
}

.hero h1{
font-size:56px;
line-height:1.02;
letter-spacing:-3px;
max-width:680px;
margin-bottom:20px;
color:#0f464c;
}

.hero p{
font-size:15px;
line-height:1.8;
color:#5d7477;
max-width:620px;
margin-bottom:28px;
}

.cta-row{
display:flex;
gap:14px;
flex-wrap:wrap;
}

.button{
padding:13px 22px;
border-radius:14px;
font-size:13px;
font-weight:600;
transition:0.3s ease;
display:inline-flex;
align-items:center;
justify-content:center;
}

.button-primary{
background:#f28c38;
color:#fff;
box-shadow:0 10px 22px rgba(242,140,56,0.16);
}

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

.button-secondary{
background:rgba(255,255,255,0.58);
backdrop-filter:blur(12px);
border:1px solid rgba(15,92,99,0.10);
color:#0f5c63;
}

.hero-card{
background:rgba(255,255,255,0.56);
border:1px solid rgba(255,255,255,0.45);
backdrop-filter:blur(16px);
padding:28px;
border-radius:26px;
box-shadow:0 12px 30px rgba(15,92,99,0.08);
}

.hero-card h3{
font-size:20px;
margin-bottom:18px;
color:#0f5c63;
}

.hero-card ul{
list-style:none;
display:flex;
flex-direction:column;
gap:14px;
}

.hero-card li{
position:relative;
padding-left:22px;
font-size:14px;
color:#4d696d;
}

.hero-card li::before{
content:'';
position:absolute;
left:0;
top:8px;
width:8px;
height:8px;
background:#f28c38;
border-radius:50%;
opacity:0.7;
}

.section{
padding:55px 0;
}

.section-title{
font-size:38px;
line-height:1.1;
letter-spacing:-2px;
margin-bottom:16px;
color:#0f464c;
max-width:720px;
}

.section-description{
font-size:15px;
line-height:1.8;
color:#5c7477;
max-width:720px;
margin-bottom:28px;
}

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

.card{
background:#fff;
padding:24px;
border-radius:22px;
border:1px solid rgba(15,92,99,0.05);
box-shadow:0 8px 24px rgba(15,92,99,0.05);
position:relative;
overflow:hidden;
transition:0.3s ease;
}

.card::before{
content:'';
position:absolute;
left:0;
top:0;
width:100%;
height:2px;
background:rgba(242,140,56,0.6);
}

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

.card h3{
font-size:19px;
margin-bottom:12px;
color:#0f5c63;
}

.card p{
font-size:14px;
line-height:1.8;
color:#5d7477;
}

.testimonial-scroll{
display:flex;
gap:20px;
overflow-x:auto;
padding-bottom:10px;
scrollbar-width:none;
}

.testimonial-scroll::-webkit-scrollbar{
display:none;
}

.testimonial-card{
min-width:320px;
background:#fff;
padding:24px;
border-radius:22px;
box-shadow:0 8px 24px rgba(15,92,99,0.05);
border-top:3px solid rgba(242,140,56,0.6);
}

.testimonial-card p{
font-size:14px;
line-height:1.8;
color:#5c7074;
margin-bottom:18px;
}

.testimonial-card h4{
font-size:15px;
color:#0f5c63;
}

.gallery-grid{
columns:3 280px;
column-gap:18px;
}

.gallery-grid img{
width:100%;
margin-bottom:18px;
border-radius:20px;
box-shadow:0 10px 24px rgba(0,0,0,0.08);
break-inside:avoid;
transition:0.3s ease;
}

.gallery-grid img:hover{
transform:translateY(-4px);
}

footer{
background:#08393e;
padding:36px 0 18px;
margin-top:60px;
}

.footer-container{
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
flex-wrap:wrap;
}

.footer-brand{
display:flex;
align-items:center;
gap:14px;
}

.footer-brand img{
width:54px;
height:54px;
object-fit:contain;
}

.footer-brand h3{
font-size:28px;
color:#fff;
margin-bottom:4px;
}

.footer-brand p{
font-size:13px;
line-height:1.7;
color:#bfd3d6;
max-width:380px;
}

.footer-links{
display:flex;
gap:22px;
flex-wrap:wrap;
}

.footer-links a{
font-size:13px;
color:#d7e6e8;
}

.footer-bottom{
margin-top:24px;
padding-top:18px;
border-top:1px solid rgba(255,255,255,0.08);
text-align:center;
font-size:12px;
color:#b4c9cc;
}

@media(max-width:992px){

.hero-grid,
.grid-3{
grid-template-columns:1fr;
}

.hero h1{
font-size:44px;
}

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

.gallery-grid{
columns:2 200px;
}

}

@media(max-width:768px){

.navbar{
flex-direction:column;
justify-content:center;
gap:16px;
padding:18px 0;
}

.brand-logo{
width:72px;
height:72px;
}

.brand-title{
font-size:30px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.hero{
padding-top:40px;
}

.hero h1{
font-size:38px;
}

.gallery-grid{
columns:1;
}

}