/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  padding-top: 70px;
  line-height: 1.6;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.logo {
  width: 60px;
}

.header-right ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.header-right a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.header-right a:hover {
  color: #ffdd57;
}

/* Banner */
.banner {
  height: 100vh;
  background: url("img/photo_2026-01-23_13-55-11 (4).jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 60, 114, 0.75);
}

.banner-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.banner h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.banner p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

/* Buttons */
.primary-btn {
  background: #ff6b6b;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #ff4757;
  transform: translateY(-3px);
}

/* Sections */
.service-section {
  padding: 80px 60px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #1e3c72;
}

/* Services */
.services {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  max-width: 330px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #2a5298;
}

.service-card.simple img {
  display: none;
}

/* Availability */
.availability-box {
  max-width: 500px;
  margin: auto;
  background: #2a5298;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.2rem;
}

/* Contact */
.contact-us {
  background: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(255, 107, 107, 0.8)
    ),
    url("img/photo_2026-01-23_13-55-11 (2).jpg") center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.contact-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.phone {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Footer */
.footer {
  background: #1e3c72;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

.social-links a {
  color: #ffdd57;
  font-size: 24px;
  margin: 0 10px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #fff;
}

.footer p {
  margin-top: 15px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .banner h1 {
    font-size: 2.6rem;
  }

  .banner p {
    font-size: 1.1rem;
  }

  .service-section {
    padding: 60px 20px;
  }
}