*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
}

body{
background:#eef3f9;
color:#222;
line-height:1.6;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
height:80px;
background:#062b5b;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 70px;
box-shadow:0 5px 20px rgba(0,0,0,.15);
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:30px;
font-weight:bold;
letter-spacing:.5px;
}

.navbar ul{
display:flex;
gap:40px;
list-style:none;
}

.navbar a{
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.navbar a:hover{
color:#ffb100;
}

/* ===========================
   HERO
=========================== */

.hero{

height:520px;

background:
linear-gradient(rgba(0,35,82,.75),rgba(0,35,82,.75)),
url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1800&q=80");

background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;

}

.hero-overlay{
text-align:center;
color:white;
}

.hero h1{
font-size:62px;
font-weight:700;
margin-bottom:15px;
}

.hero p{
font-size:22px;
margin-bottom:40px;
opacity:.95;
}

/* ===========================
   SEARCH
=========================== */

.search-box{

display:flex;
justify-content:center;
align-items:center;
max-width:850px;
margin:auto;

background:rgba(255,255,255,.15);

backdrop-filter:blur(14px);

padding:18px;

border-radius:70px;

box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.search-box input{

flex:1;

padding:18px 25px;

font-size:17px;

border:none;

outline:none;

border-radius:50px;

}

.search-box button{

margin-left:15px;

padding:18px 38px;

background:#ff9800;

color:white;

font-size:17px;

font-weight:bold;

border:none;

border-radius:50px;

cursor:pointer;

transition:.3s;

}

.search-box button:hover{

background:#e58b00;

transform:translateY(-2px);

}

/* ===========================
   CONTAINER
=========================== */

.container{

width:92%;

max-width:1300px;

margin:60px auto;

}

/* ===========================
   MAP
=========================== */

#map{

height:550px;

border-radius:18px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.18);

border:5px solid white;

}

/* ===========================
   RESULT CARDS
=========================== */

.card{

background:white;

padding:35px;

margin-top:35px;

border-radius:18px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.3s;

}

.card:hover{

transform:translateY(-5px);

}

.section-title{

font-size:28px;

margin-bottom:25px;

color:#062b5b;

padding-bottom:12px;

border-bottom:3px solid #ff9800;

display:inline-block;

}

.row{

display:flex;

justify-content:space-between;

padding:15px 0;

border-bottom:1px solid #ececec;

font-size:17px;

}

.label{

font-weight:700;

color:#062b5b;

}

.status{

background:#28a745;

color:white;

padding:6px 16px;

border-radius:30px;

font-weight:bold;

}

/* ===========================
   FOOTER
=========================== */

footer{

background:#062b5b;

color:white;

margin-top:70px;

padding:50px;

text-align:center;

}

footer h3{

margin-bottom:10px;

font-size:26px;

}

footer p{

opacity:.85;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

.navbar{

padding:0 20px;

flex-direction:column;

height:auto;

padding-top:20px;

padding-bottom:20px;

}

.navbar ul{

margin-top:20px;

gap:20px;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:18px;

}

.search-box{

flex-direction:column;

border-radius:20px;

padding:20px;

}

.search-box input{

width:100%;

margin-bottom:15px;

}

.search-box button{

width:100%;

margin-left:0;

}

.row{

flex-direction:column;

gap:8px;

}

#map{

height:420px;

}

}