.contact-us {
  height: 100vh;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background: url(../images/contact-us-bg.png) no-repeat center center;
  background-size: cover;
  padding: 0 20px;
}

.contact-us .contact-card {
  background: #00000078;
  border-radius: 30px;
  margin-top: 90px;
  border: 1px solid #8d8d8d;
  padding: 60px;
  max-width: 900px;
  width: 100%;
  color: white;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-us .card-header {
  margin-bottom: 40px;
}

.contact-us .card-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}

.contact-us .card-header p {
  color: #999;
  font-size: 16px;
  line-height: 1.5;
}

.contact-us .card-content {
  display: flex;
  gap: 40px;
  /* align-items: flex-start; */
}

.contact-us .left-section {
  flex: 1;
  text-align: left;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-us .left-section h2 {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}

/* .contact-info {
  margin-bottom: 30px;
} */

.contact-us .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 14px;
}

.contact-us .info-item svg {
  width: 18px;
  height: 18px;
  stroke: #ccc;
}

.contact-us .social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.contact-us .social-links a {
  /* width: 35px;
  height: 35px; */
  padding: 8px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  color: #ccc;
}

.contact-us .social-links a:hover {
  border-color: #666;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.contact-us .social-links a svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.contact-us .divider {
  width: 2px;
  background: #444;
  align-self: stretch;
}

.contact-us .right-section {
  flex: 1.5;
}

.contact-us .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-us .form-row input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 10px 0;
  color: white;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-us .form-row input::placeholder {
  color: #999;
}

.contact-us .form-row input:focus {
  border-bottom-color: #fff;
}

.contact-us textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  padding: 10px 0;
  color: white;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  margin-bottom: 30px;
  font-family: inherit;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

.contact-us textarea::-webkit-scrollbar {
  width: 8px;
}

.contact-us textarea::-webkit-scrollbar-track {
  background: transparent;
}

.contact-us textarea::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.contact-us textarea::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

.contact-us textarea::placeholder {
  color: #999;
}

.contact-us textarea:focus {
  border-bottom-color: #fff;
}

.contact-us .submit-btn {
  background: transparent;
  border: 1px solid #fff;
  color: white;
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  float: right;
}

.contact-us .submit-btn:hover {
  background: white;
  color: #1e1e1e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-us {
    height: 100%;
    padding: 20px 20px 20px 20px;
  }

  .contact-us .contact-card {
    padding: 30px 20px;
  }

  .contact-us .card-header h1 {
    font-size: 28px;
  }

  .contact-us .card-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-us .divider {
    width: 100%;
    height: 1px;
  }

  .contact-us .left-section {
    text-align: center;
    padding: 20px;
  }

  .contact-us .right-section {
    padding: 20px;
  }

  .contact-us .social-links {
    justify-content: center;
  }
  .contact-us .card-header {
    margin-bottom: 0;
  }

  .contact-us .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-us .submit-btn {
    width: 100%;
    float: none;
  }
}

@media (max-width: 480px) {
  .contact-us .card-header h1 {
    font-size: 24px;
  }

  .contact-us .card-header p {
    font-size: 13px;
  }

  .contact-us .left-section h2 {
    font-size: 24px;
  }

  .contact-us .info-item {
    font-size: 13px;
  }
}
