/* General Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Roboto', sans-serif; color: #222; line-height: 1.6; background: #f0f4f8; }
a { text-decoration: none; color: inherit; }
section { padding: 80px 20px; }

/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  background: #0074D9; /* Blue header */
  color: #fff;
  border-bottom: 2px solid #005fa3;
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo { font-weight: 700; font-size: 1.5rem; color: #fff; }
nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}
nav a {
  padding: 8px 15px;
  border: 1px solid transparent;
  border-radius: 25px;
  transition: all 0.3s;
  color: #fff;
}
nav a:hover { 
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle div {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* Home Section */
#home {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  text-align: center;
}
#home img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Other Sections */
section h2 { color: #0074D9; margin-bottom: 20px; text-align: center; }
#reviews { background: #e6f0fa; }
#prices { background: #d0e4fa; }
#contact { background: #c0dcf8; }

/* Contact Form */
form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form input, form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #0074D9;
  font-size: 1rem;
}
form input:focus, form textarea:focus {
  outline: none;
  border-color: #005fa3;
}
form button {
  padding: 15px;
  border: none;
  background: #0074D9;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
form button:hover { background: #005fa3; }

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0074D9;
    width: 200px;
    flex-direction: column;
    border-left: 1px solid #005fa3;
    border-bottom: 1px solid #005fa3;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  nav ul.open { transform: translateX(0); }
  .menu-toggle { display: flex; }

  /* Contact form responsive like image */
  form { padding: 0 10px; }
}
