/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 30px;
  width: auto;
}

/* NAV + HAMBURGER WRAPPER */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* NAV LINKS */
nav { display: block; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #5682B1;
}

/* DROPDOWN */
.dropdown { position: relative; }

.dropdown-content {
  display: none;
  position: absolute;
  background: #000;
  border: 1px solid #1a1a1a;
  min-width: 160px;
  top: 100%;
  left: 0;
  z-index: 999;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

.dropdown-content a:hover { background: #333; }
.dropdown:hover .dropdown-content { display: block; }

/* CONTACT BUTTON */
.contact-btn {
  background: #5682B1;
  padding: 8px 18px;
  border-radius: 8px;
  color: #fff !important;
  transition: 0.3s ease;
}

.contact-btn:hover { background: #466e95; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: white;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .navbar { padding: 15px 25px; }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }

  nav { width: 100%; }

  .hamburger { display: block; margin-left: auto; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: black;
    padding: 25px 0;
    border-top: 1px solid #1a1a1a;
    gap: 20px;
  }

  .nav-links.show { display: flex; }

  .dropdown-content {
    position: static;
    border: none;
  }
}

/* ===== SERVICE SECTION ===== */
.service-section {
  padding: 80px 15%;
}

.service-section h1 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.intro {
  color: #ccc;
  margin-bottom: 40px;
}

.service-points {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 40px;
  color: #ccc;
}

/* MAIN BUTTON */
.contact-btn-main {
  background: #fff;
  color: #000;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.contact-btn-main:hover {
  background: #5682B1;
  color: #fff;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 25px 0;
  background: #111;
  color: #aaa;
  margin-top: 60px;
  font-size: 0.9rem;
}
.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-links img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: 0.3s ease;
}

.social-links img:hover {
  opacity: 1;
  transform: scale(1.1);
}