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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

nav {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 167, 98, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4a762;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo a {
  color: #d4a762;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #c19552;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a762;
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #d4a762;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.nav-icon {
  width: 45px;
  height: 45px;
  margin-left: 10px;
  object-fit: contain;
}

section {
  padding: 5rem 2rem;
}

#home {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("header.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #d4a762;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 2rem;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #c19552;
}

#services {
  background: #f9f9f9;
  position: relative;
}

#services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  position: relative;
}

#services h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #d4a762;
  margin: 1rem auto;
}

.services-info {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  text-align: center;
  line-height: 1.8;
  color: #555;
  font-size: 1.1rem;
}

.services-info p {
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  padding: 2.5rem;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #d4a762;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

#contact {
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  padding: 1rem;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.contact-item h3 {
  color: #d4a762;
  margin-bottom: 1rem;
}

.contact-item p {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #333;
  color: white;
}

.floating-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.phone-btn {
  background-color: #4caf50;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.whatsapp-btn {
  background-color: #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.viber-btn {
  background-color: #665cac;
  box-shadow: 0 4px 15px rgba(102, 92, 172, 0.4);
}

.float-btn i {
  font-size: 26px;
}

.whatsapp-btn i,
.viber-btn i {
  font-size: 40px;
}

.float-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  nav {
    padding: 0.8rem;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-img {
    height: 30px;
  }

  .nav-right {
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
  }

  nav ul {
    gap: 1rem;
  }

  nav ul li a {
    font-size: 0.9rem;
  }

  .nav-icon {
    width: 30px;
    height: 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .service-card i {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .floating-buttons {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    gap: 10px;
  }

  .float-btn {
    width: 40px;
    height: 40px;
  }

  .float-btn i {
    font-size: 18px;
  }

  .whatsapp-btn i,
  .viber-btn i {
    font-size: 22px;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
  }

  .nav-icon {
    width: 35px;
    height: 35px;
    margin-left: 5px;
  }
}
