* {
    Margin: 0;
    Padding: 0;
    box-sizing: border-box; 
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: Poppins, Arial, sans-serif;
  background-color: #f4f4f4;
  color: #202020;
  display: flex;
  flex-direction: column;
}



.container {
  flex: 1;
  padding-bottom: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

html, body {
  min-height: 100svh;
  min-height: 100vh;
}

body::after { content: ''; display: block; height: 10vh; }



.header {
  position: fixed;
  background-color: #202020;
  height: 10vh;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.contact {
  color: white;
  font-size: 4.5vh;
  font-weight: 600;
}

.contact-section {
  margin-top: 12vh;
  margin-bottom: 12vh;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .contact-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.contact-form, .contact-info-box {
  flex: 1;
  max-width: 500px;
}

.contact-form h2, .contact-info-box h2 {
  margin-bottom: 20px;
  font-size: 2.5vh;
  color: #202020;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1.8vh;
}

.contact-form form button {
  width: 100%;
  padding: 12px;
  background-color: #202020;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.8vh;
  transition: 0.3s;
  cursor: pointer;
}

.contact-form form button:hover {
  background-color: #444;
}

.contact-info-box p {
  margin: 10px 0;
  font-size: 1.8vh;
  color: #333;
  word-break: break-word;
  white-space: normal;
  line-height: 1.6;
}

.contact-info-box i {
  margin-right: 10px;
  color: #202020;
}

.full-address {
  line-height: 1.4;
  font-size: 1.8vh;
  color: #333;
  margin-top: 10px;
  word-break: break-word;
  white-space: normal;
}

.full-address i {
  margin-right: 10px;
  color: #202020;
}

.contact-divider {
  display: none;
  width: 1px;
  height: auto;
  background-color: #ccc;
  margin: 0 20px;
}

@media (min-width: 768px) {
  .contact-divider {
    display: block;
    height: auto;
  }

  .contact-section {
    align-items: stretch;
  }
}


/* ✅ Success Message with animation */
.form-success-message {
  margin-top: 15px;
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.6vh;
  animation: fadeIn 0.5s ease-in-out;
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #202020;
  z-index: 9999;
  padding: 1.5vh 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-info a {
  width: 7vh;
  height: 7vh;
  border-radius: 10px;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  color: #202020;
  text-decoration: none;
}

.contact-info a svg {
  width: 4vh;
  height: 4vh;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-info a:hover {
  background-color: #cecece;
  color: #000000;
}

@keyframes slideLeftRight {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}



.gt-icon-right a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Left Side Icon */
.gt-icon-left {
  position: fixed;
  left: 5vw;
  top: 50%;
  z-index: 9999;
  animation: slideLeftRight 1.5s ease-in-out infinite;
}

.gt-icon-left a {
  color: #202020;
  font-size: 5vw;
  text-decoration: none;
  transition: all 0.3s ease;
}

