@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

body {
  padding: 0 5%;
  background: #000000;
  color: #ffffff;
}

#contact-hero {
  min-height: 100vh;
  position: relative;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  gap: 70px;
  animation: slideInDown 0.8s ease-out forwards;
  opacity: 0;
  animation-delay: 0.1s;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.header-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #24B0B7 0%, #1a1a2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: 0.3s ease;
}

.header-logo:hover {
  filter: drop-shadow(0 0 8px #24B0B7);
}

.header-logo span {
  font-size: 56px;
  color: #24B0B7;
  line-height: 0.2;
}

nav {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0;
  justify-content: flex-end;
}

.nav-item {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: #24B0B7;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #24B0B7, #5fd4db);
  border-radius: 2px;
  transition: width 0.3s ease-out;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.contact-container {
  padding: 80px 0 100px 0;
}

.contact-header {
  margin-bottom: 100px;
  text-align: center;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.contact-header h1 {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-header .accent-large {
  background: linear-gradient(135deg, #24B0B7 0%, #5fd4db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.contact-header .subtitle {
  font-size: 22px;
  color: #cccccc;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.info-card {
  background: linear-gradient(135deg, rgba(36, 176, 183, 0.05) 0%, rgba(36, 176, 183, 0.02) 100%);
  border: 1px solid rgba(36, 176, 183, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  animation-delay: calc(0.3s + 0.1s * var(--index, 0));
}

.info-card:hover {
  border-color: #24B0B7;
  box-shadow: 0 20px 40px rgba(36, 176, 183, 0.15);
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(36, 176, 183, 0.1) 0%, rgba(36, 176, 183, 0.05) 100%);
}

.info-icon {
  font-size: 48px;
  color: #24B0B7;
  margin-bottom: 20px;
  display: inline-block;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36, 176, 183, 0.1);
  border-radius: 16px;
  transition: 0.3s ease;
}

.info-card:hover .info-icon {
  background: rgba(36, 176, 183, 0.2);
  transform: scale(1.1);
}

.info-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.info-card p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 300;
}

.info-card p a {
  color: #24B0B7;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}

.info-card p a:hover {
  color: #5fd4db;
  text-decoration: underline;
}

.info-subtitle {
  font-size: 14px;
  color: #999999 !important;
  margin-bottom: 0 !important;
}

/* Form Section */
.form-section {
  background: linear-gradient(135deg, rgba(36, 176, 183, 0.08) 0%, rgba(36, 176, 183, 0.03) 100%);
  border: 1px solid rgba(36, 176, 183, 0.2);
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.form-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #24B0B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-description {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(36, 176, 183, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #24B0B7;
  box-shadow: 0 0 0 3px rgba(36, 176, 183, 0.1);
  outline: none;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1a;
  color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  font-family: "Open Sans", sans-serif;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-group.checkbox input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
}

.form-group.checkbox label {
  margin-bottom: 0;
  text-transform: none;
  font-weight: 400;
  font-size: 16px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #24B0B7 0%, #5fd4db 100%);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(36, 176, 183, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

.form-note {
  font-size: 13px;
  color: #999999;
  margin-top: 15px;
  font-weight: 300;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 60px 40px;
}

.success-content {
  animation: slideInUp 0.6s ease-out forwards;
}

.success-content i {
  font-size: 80px;
  color: #24B0B7;
  margin-bottom: 20px;
  display: block;
  animation: popIn 0.6s ease-out forwards;
}

.success-content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.success-content p {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 30px;
  font-weight: 300;
}

.reset-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #24B0B7;
  color: #000000;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.reset-btn:hover {
  background: #5fd4db;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(36, 176, 183, 0.3);
}

/* Social Section */
.social-section {
  text-align: center;
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(36, 176, 183, 0.2);
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

.social-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #24B0B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-section > p {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: linear-gradient(135deg, rgba(36, 176, 183, 0.1), rgba(36, 176, 183, 0.05));
  border: 1px solid rgba(36, 176, 183, 0.3);
  border-radius: 12px;
  color: #24B0B7;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 20px;
}

.social-link:hover {
  background: linear-gradient(135deg, rgba(36, 176, 183, 0.2), rgba(36, 176, 183, 0.1));
  border-color: #24B0B7;
  box-shadow: 0 10px 30px rgba(36, 176, 183, 0.2);
  transform: translateY(-3px);
}

.social-link span {
  display: none;
}

@media (min-width: 768px) {
  .social-link span {
    display: inline;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive - Tablet */
@media screen and (max-width: 768px) {
  body {
    padding: 0 5%;
  }

  header {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .header-logo {
    font-size: 24px;
  }

  .header-logo span {
    font-size: 40px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .nav-item {
    font-size: 14px;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

  .contact-header .subtitle {
    font-size: 18px;
  }

  .contact-info-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }

  .form-section {
    padding: 40px;
    margin-bottom: 60px;
  }

  .form-section h2 {
    font-size: 2rem;
  }

  .form-description {
    font-size: 16px;
  }

  .contact-form {
    gap: 20px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 14px 16px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .social-section h2 {
    font-size: 2rem;
  }

  .social-links {
    gap: 15px;
    flex-wrap: wrap;
  }

  .social-link {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Responsive - Mobile */
@media screen and (max-width: 428px) {
  body {
    padding: 0 4%;
  }

  header {
    gap: 15px;
    padding: 15px 0;
  }

  .header-logo {
    font-size: 22px;
  }

  .header-logo span {
    font-size: 40px;
  }

  nav {
    flex-direction: row;
    gap: 20px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
  }

  .nav-item {
    font-size: 13px;
  }

  .nav-item::after {
    height: 2px;
  }

  .nav-item.active::after {
    width: 100%;
  }

  .contact-container {
    padding: 40px 0 50px 0;
  }

  .contact-header {
    margin-bottom: 40px;
  }

  .contact-header h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .contact-header .subtitle {
    font-size: 15px;
  }

  .contact-info-section {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 35px;
  }

  .info-card {
    padding: 20px 15px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 30px;
    margin-bottom: 12px;
  }

  .info-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .info-card p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .info-subtitle {
    font-size: 12px !important;
  }

  .form-section {
    padding: 25px 15px;
    border-radius: 12px;
    margin-bottom: 35px;
  }

  .form-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .form-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .contact-form {
    gap: 15px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 12px;
    font-size: 16px;
    border-radius: 8px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .form-group.checkbox {
    gap: 10px;
  }

  .form-group.checkbox input {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .form-group.checkbox label {
    font-size: 13px;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 13px;
    margin-top: 8px;
  }

  .form-note {
    font-size: 11px;
    margin-top: 12px;
  }

  .success-message {
    padding: 40px 20px;
  }

  .success-content i {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .success-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .success-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .reset-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .social-section {
    margin-top: 50px;
    padding-top: 30px;
  }

  .social-section h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .social-section > p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .social-links {
    gap: 10px;
    flex-direction: column;
  }

  .social-link {
    width: 100%;
    padding: 12px 15px;
    font-size: 13px;
    justify-content: center;
  }

  .social-link i {
    font-size: 18px;
  }
}
