* {
  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;
  }
}




.mobile-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s ease;
  z-index: 20;
}

.mobile-menu.active {
  right: 0;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-links a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
}

.mobile-lang {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.mobile-lang a {
  cursor: pointer;
  opacity: 0.7;
}

.mobile-lang a:hover {
  opacity: 1;
}

.mobile-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.mobile-close:hover {
  opacity: 1;
}

@media (max-width: 700px) {
   
    .logo-text {
        display: none;
    }

    .desktop-lang {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    * {
        font-size: -15%;
    }

    .lang-switch {
      display: none;
    }
}



.contact-hero {

  background: linear-gradient(120deg, #111, #2b2b2b);
  

   padding: 140px 60px 100px 60px;
    color: #fff;

    background:
        linear-gradient(to right,
            rgba(0,0,0,0.80) 0%,
            rgba(0,0,0,0.80) 35%,
            rgba(0,0,0,0.90) 70%,
            rgba(0,0,0,0.6) 100%
        ),
        url("img/1306.jpg") no-repeat center center;
        
    background-attachment: fixed;

    background-size: cover;    
    background-repeat: no-repeat;
    background-position: center;
}


.mobile-icon {
    margin-top: 5px;
    width: 30px;      
    height: 30px;  
    object-fit: contain;
    cursor: pointer;
}