* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f7f7f7;
  color: #111;
  font-family: "Comfortaa", sans-serif;
}

h1 {
  font-family: "Science Gothic", sans-serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 20px 60px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

nav {
  margin-left: auto;
  margin-right: 40px; 
}

.logo-img {
  height: 85px;
  margin-top: 5px;
  transition: all 0.3s ease;
}

nav a {
  margin-right: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}

.lang-switch a {
  margin-left: 12px;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.6;
}

.lang-switch a:hover {
  opacity: 1;
}

.footer {
  padding: 40px 60px;
  background: #111;
  color: #777;
}

.contact-hero {
  padding: 160px 0 80px 0;
  background: linear-gradient(135deg, #111, #2c2c2c);
  color: #fff;
}

.contact-section {
  padding: 70px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info p {
  margin-bottom: 25px;
  line-height: 1.6;
  padding-bottom: 20px;
}

.contact-details {
  margin-top: 40px;
}

.detail {
  margin-bottom: 25px;
}

.detail strong {
  display: block;
  font-size: 14px;
  opacity: 0.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form button {
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

.contact-link i {
  font-size: 14px;
}

.contact-link:hover {
  color: #c49a3a; 
}


.animate-left,
.animate-right,
.animate-up {
  opacity: 0;
  transition: all 0.6s ease;
}

.animate-left {
  transform: translateX(-80px);
}

.animate-right {
  transform: translateX(80px);
}

.animate-up {
  transform: translateY(60px);
}

.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
