body{
font-family: Arial, sans-serif;
margin:0;
background:#626262;
}

/* HEADER */

/* HEADER */

.main-header{
background:rgb(205, 202, 202);
box-shadow:0 2px 8px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}

.header-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:10px 20px;
}

/* LOGO */

.logo-area img{
height:100px;
}

/* NAVIGATION */

.main-nav{
display:flex;
gap:25px;
}

.main-nav a{
text-decoration:none;
color:#333;
font-weight:bold;
}

/* CALL BUTTON */

.call-button{
background:#c20000;
color:white;
padding:10px 18px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

.call-button:hover{
background:#a10000;

}

/* NAVIGATION */

nav{
background:#333;
text-align:center;
padding:12px;
position:sticky;
top:0;
z-index:1000;
}

nav a{
color:white;
margin:15px;
text-decoration:none;
font-weight:bold;
}

/* HERO / SLIDESHOW */

.hero{
position:relative;
height:460px;
overflow:hidden;
color:white;
text-align:center;
width:100%;
max-width:none;
margin:0;
background:none;
}

.slideshow{
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
}

.slide{
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
animation:fade 18s infinite;
}

/* IMAGES */

.slide1{
background-image:url("images/stock1.jpg");
animation-delay:0s;
}

.slide2{
background-image:url("images/stock2.jpg");
animation-delay:6s;
}

.slide3{
background-image:url("images/stock3.jpg");
animation-delay:12s;
}

/* FADE ANIMATION */

@keyframes fade{

0%{opacity:0;}
10%{opacity:1;}
30%{opacity:1;}
40%{opacity:0;}
100%{opacity:0;}

}

/* HERO TEXT */

.hero-text{
position:relative;
z-index:2;
padding-top:150px;
background:rgba(0,0,0,0.35);
height:100%;
}

/* SECTIONS */

section{
max-width:960px;
margin:auto;
background:#838181;
padding:30px;
margin-top:20px;
border-radius:8px;
}

h2{
text-align:center;
}

/* FORM */

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 15px;
  font-weight: 600;
}

form input,
form select,
form textarea {
  margin-top: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #0077cc;
  outline: none;
}

form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background-color: #005fa3;
}

.form-confirmation {
  margin-top: 20px;
  padding: 15px;
  background-color: #d4edda;
  color: #155724;
  border-radius: 6px;
}

.hidden {
  display: none;
}

label{
font-weight:600;
color:#333;
}

input, select, textarea{
padding:12px;
border:1px solid #ccc;
border-radius:6px;
width:100%;
box-sizing:border-box;
font-size:1rem;
}

input:focus, select:focus, textarea:focus{
outline:2px solid rgba(194,0,0,0.2);
border-color:#c20000;
}

button{
padding:14px;
background:#c20000;
border:none;
color:white;
font-weight:bold;
cursor:pointer;
border-radius:6px;
transition:background .2s ease;
}

button:hover{
background:#a10000;
}

.form-confirmation{
background:#ebfff0;
border:1px solid #60bf7d;
color:#1f5a3f;
padding:16px 18px;
border-radius:8px;
max-width:600px;
margin:18px auto 0;
text-align:center;
font-size:1rem;
}

.hidden{display:none;}


/* FOOTER */

footer{
text-align:center;
padding:20px;
color:#eee;
}

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

.service{
background:white;
border-radius:8px;
overflow:hidden;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
text-align:center;
padding-bottom:15px;
}

.service img{
width:100%;
height:180px;
object-fit:cover;
}

.service h3{
margin:10px 0 5px 0;
}

.service p{
padding:0 10px;
font-size:14px;
}

@media (max-width:800px){

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

.main-nav{
flex-wrap:wrap;
justify-content:center;
}

}

/* WHATSAPP FLOATING BUTTON */

.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
}

/* WHATSAPP FLOATING BUTTON */

.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.whatsapp-button svg {
  width: 32px;
  height: 32px;
}