/* GENERAL */

html, body{
height:100%;
margin:0;
}

body{
font-family: Arial, Helvetica, sans-serif;
background:#f4f4f4;
color:#333;

display:flex;
flex-direction:column;
min-height:100vh;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* HEADER */

header{
background:#0A1A3F;
color:white;
padding:25px;
text-align:center;
}


/* NAVIGATION */

.menu-icon{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

#menu-links{
display:flex;
gap:30px;
}

nav{
background:#162A5C;
padding:15px 30px;
display:flex;
justify-content:center;
align-items:center;
gap:30px;
position:sticky;
top:0;
z-index:1000;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:16px;
transition:0.3s;
}

nav a:hover{
color:#ffcc00;
}

nav a.active{
color:#ff0000;
border-bottom:2px solid #ff0000;
}


/* MOBILE MENU */

@media(max-width:768px){

.menu-icon{
display:block;
}

#menu-links{
display:none;
flex-direction:column;
width:100%;
text-align:center;
margin-top:10px;
}

#menu-links a{
display:block;
padding:10px;
}

nav{
flex-direction:column;
gap:10px;
}

}


/* HERO */

.hero{
background:#2B2B2B;
color:white;
text-align:center;
padding:80px 20px;
}

.hero h2{
font-size:32px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
}


/* BUTTON */

.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#ffcc00;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}


/* MAIN SECTION */

section{
flex:1;
padding:50px 0;
}

.quote-section .container{
max-width:1100px;
margin:50px auto;
background:white;
padding:50px 40px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}


/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}


/* CARDS */

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
text-align:center;
}

.card h3{
margin-bottom:10px;
}


/* GALLERY */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.gallery-grid img{
width:100%;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.2);
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}


/* QUOTE BOX */

.quote-box{
background:white;
padding:30px;
border-radius:8px;
max-width:400px;
margin:auto;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.quote-box input,
.quote-box select{
width:100%;
padding:10px;
margin:10px 0;
}


/* POPUP FORM */

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:2000;
overflow:auto;
}

.popup-content{
background:#fff;
width:90%;
max-width:400px;
padding:20px;
margin:60px auto;
border-radius:8px;
text-align:center;
max-height:85vh;
overflow-y:auto;
}

.popup-content input,
.popup-content textarea{
width:100%;
margin:8px 0;
padding:10px;
border:1px solid #ccc;
border-radius:4px;
}

.popup-content button{
background:#0A1A3F;
color:white;
padding:12px;
border:none;
width:100%;
margin-top:10px;
cursor:pointer;
border-radius:5px;
}

.popup-content button:hover{
background:#162A5C;
}

.close{
float:right;
font-size:22px;
cursor:pointer;
}


/* CONTACT FORM */

form{
max-width:500px;
margin:auto;
}

form input,
form textarea{
width:100%;
padding:10px;
margin:10px 0;
}

form button{
background:#000;
color:white;
padding:12px 20px;
border:none;
cursor:pointer;
}


/* FOOTER */

footer{
background:#000;
color:white;
text-align:center;
padding:20px;
margin-top:auto;
}