
body{
margin:0;
font-family:'Inter',sans-serif;
background:#f5f7fb;
color:#222;
}

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

.header{
background:#0f1c2e;
padding:15px 0;
position:sticky;
top:0;
z-index:1000;
}

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

.header-logo{
height:100px;
}

nav a{
color:white;
margin-left:18px;
text-decoration:none;
}

.hero{
background:linear-gradient(135deg,#0f1c2e,#1f3b63);
color:white;
padding:140px 0;
text-align:center;
position:relative;
overflow:hidden;
}

.hero-blueprint{
position:absolute;
width:800px;
height:800px;
border:1px solid rgba(255,255,255,0.05);
border-radius:50%;
top:-200px;
left:50%;
transform:translateX(-50%);
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero-sub{
opacity:0.9;
max-width:600px;
margin:auto;
}

.btn{
padding:14px 24px;
border-radius:8px;
text-decoration:none;
display:inline-block;
margin:6px;
font-weight:600;
}

.primary{
background:#f6a623;
color:white;
}

.secondary{
background:white;
color:black;
}

.section{
padding:100px 0;
}

.section.alt{
background:#eef2f7;
}

.bubble-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.bubble{
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
margin-top:40px;
}

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

.steps{
display:flex;
gap:25px;
flex-wrap:wrap;
margin-top:40px;
}

.step{
flex:1;
background:white;
padding:25px;
border-radius:14px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.step span{
display:inline-block;
background:#f6a623;
color:white;
width:42px;
height:42px;
line-height:42px;
border-radius:50%;
font-weight:bold;
margin-bottom:10px;
}

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

.seal{
width:340px;
justify-self:center;
}

.damage-form{
display:grid;
gap:12px;
max-width:520px;
margin-top:20px;
}

input,textarea,select{
padding:12px;
border-radius:8px;
border:1px solid #d5dbe4;
}

.footer{
background:#0f1c2e;
color:white;
padding:60px 0;
text-align:center;
}

.footer-logo{
width:460px;
margin-bottom:20px;
}


/* --- Mobile Optimization --- */
@media (max-width:768px){

.header-logo{
height:60px;
}

.nav{
flex-direction:column;
gap:10px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.hero{
padding:90px 0;
}

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

.hero-sub{
font-size:16px;
padding:0 10px;
}

.contact{
grid-template-columns:1fr;
text-align:center;
}

.seal{
width:220px;
}

.footer-logo{
width:220px;
}

.steps{
flex-direction:column;
}

.btn{
display:block;
width:100%;
text-align:center;
}

.hero-buttons{
display:flex;
flex-direction:column;
}

}


/* --- Mobile Navigation --- */
.nav-toggle{
display:none;
background:none;
border:none;
cursor:pointer;
flex-direction:column;
gap:5px;
}

.nav-toggle span{
display:block;
width:26px;
height:3px;
background:#1a1a1a;
}

@media (max-width:768px){

.nav-toggle{
display:flex;
margin-left:auto;
}

#mainNav{
display:none;
flex-direction:column;
width:100%;
margin-top:10px;
}

#mainNav.open{
display:flex;
}

#mainNav a{
padding:12px 0;
border-bottom:1px solid #eee;
}

.btn{
width:100%;
}

}

/* ===== Premium Mobile & Layout Improvements ===== */

html,body{
overflow-x:hidden;
}

/* Images responsive */
img{
max-width:100%;
height:auto;
}

/* Improved hero */
.hero-enhanced{
position:relative;
background:linear-gradient(135deg,#0f172a,#1e3a5f);
color:white;
padding:120px 20px;
text-align:center;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:radial-gradient(circle at 30% 20%,rgba(255,255,255,0.08),transparent 60%);
pointer-events:none;
}

.hero-enhanced h1{
font-size:42px;
margin-bottom:20px;
}

.hero-enhanced p{
font-size:18px;
max-width:700px;
margin:0 auto 30px auto;
}

/* Navigation fix */
header{
position:sticky;
top:0;
z-index:1000;
background:white;
}

/* Buttons */
.btn{
position:relative;
z-index:5;
padding:16px 26px;
border-radius:6px;
}

/* Seal logo fix */
.seal{
max-width:220px;
margin:20px auto;
display:block;
}

/* Mobile layout */
@media (max-width:768px){

.hero-enhanced{
padding:90px 20px;
}

.hero-enhanced h1{
font-size:30px;
}

.hero-enhanced p{
font-size:16px;
}

.hero-buttons-mobile{
display:flex;
flex-direction:column;
gap:12px;
}

.btn{
width:100%;
text-align:center;
}

.seal{
max-width:180px;
}

nav{
flex-direction:column;
}

}


/* ===== Mobile Layout Fix v2 ===== */

/* prevent elements exceeding viewport */
*{
box-sizing:border-box;
}

html,body{
overflow-x:hidden;
}

/* container safety */
.container{
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

/* header layout */
header{
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 20px;
}

/* navigation alignment */
nav{
display:flex;
align-items:center;
gap:18px;
flex-wrap:wrap;
}

/* buttons never exceed container */
.btn{
display:inline-block;
max-width:100%;
white-space:normal;
}

/* hero buttons container */
.hero-buttons{
display:flex;
gap:12px;
flex-wrap:wrap;
justify-content:center;
}

/* seal safety */
.seal{
max-width:180px;
width:100%;
}

/* mobile improvements */
@media (max-width:768px){

header{
flex-wrap:wrap;
gap:10px;
}

nav{
width:100%;
justify-content:center;
}

.hero-buttons{
flex-direction:column;
align-items:stretch;
}

.btn{
width:100%;
max-width:100%;
padding:16px;
}

}
