/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #f4f4f9 0%, #e0f7fa 100%);
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
a {
  text-decoration: none;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #0056b3;
}

/* Modern Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo-link {
  display: flex;
  align-items: center;
}
.header-logo {
  height: 50px;
  width: auto;
  border-radius: 4px;
}
.header-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.header-info p,
.header-info a {
  color: #333;
  font-weight: 500;
  margin: 0;
}
.header-info i {
  margin-right: 5px;
  color: #007BFF;
}
.header-phone {
  text-decoration: none;
  transition: color 0.3s;
}
.header-phone:hover {
  color: #007BFF;
}
.header-phone-mobile {
  display: none;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.header-phone-mobile:hover {
  color: #007BFF;
}
.header-phone-mobile i {
  margin-right: 5px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: #333;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #007BFF;
}
.btn-login {
  color: #333;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s;
}
.btn-login:hover {
  color: #007BFF;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #333;
  cursor: pointer;
  padding: 5px;
}

/* Hero Section */
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: black;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: black;
}

/* Services */
.services {
  padding: 60px 0;
  background-color: #f1f1f1;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.card i {
  font-size: 2em;
  color: #007BFF;
  margin-bottom: 10px;
}
.note {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-top: 20px;
}

/* Team */
.team {
  padding: 60px 0;
}
.team h2 {
  text-align: center;
  margin-bottom: 40px;
}
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}
.member h3 {
  margin-bottom: 5px;
}
.member p {
  font-size: 0.95em;
  color: #555;
}

/* Contact */
.contact {
  padding: 60px 0;
  background-color: #e9ecef;
}
.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}
.contact-cta {
  text-align: center;
  margin-bottom: 20px;
}
.contact-info {
  text-align: center;
}
.contact-info p {
  margin-bottom: 10px;
  font-size: 1em;
}
.contact-info a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info a:hover {
  color: #007BFF;
}
.contact-info i {
  margin-right: 8px;
}
.info {
  flex: 1;
}
.info p {
  margin-bottom: 10px;
  font-size: 1em;
}
.info i {
  margin-right: 8px;
}
.form {
  flex: 1;
}
.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form button {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
}
.map iframe {
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.socials a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.2em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-info {
    display: none;
  }
  .header-phone-mobile {
    display: flex;
    align-items: center;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.active {
    max-height: 300px;
  }
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }
  .main-nav a {
    display: block;
    padding: 10px 0;
  }
  .btn-login {
    text-align: center;
  }
  .hero h1 {
    font-size: 1.8em;
  }
  .hero p {
    font-size: 1em;
  }
  .contact-cta {
    margin-bottom: 15px;
  }
  .contact-info p {
    font-size: 0.9em;
  }
}
