:root {
  --bg: #0b0b0c;
  --card: #0f0f10;
  --glass: rgba(255,255,255,0.02);
  --accent: #40cfff;
  --accent-gold: #C28823;
  --muted: #a0a0a0;
}

.contact-section {
  background: #000;
  padding: 100px 20px;
  color: #e9e9ee;
  position: relative;
  overflow: hidden;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 16px;
}

/* FORM */
.contact-form {
  flex: 1 1 580px;
  max-width: 680px;
}

.contact-form h2 {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  margin-bottom: 32px;
  color: #fff;
  text-align: left;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.contact-form .row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-form .row label {
  flex: 1;
  min-width: 200px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(20, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  color: #fff;
  border-radius: 8px;
  outline: none;
  transition: all 0.25s ease;
  font-family: inherit;
  font-size: 15px;
  margin-top: 8px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(189, 189, 189, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(30, 30, 35, 0.9);
  box-shadow: 0 0 0 2px rgba(64, 207, 255, 0.3);
  border-color: #40cfff;
  transform: translateY(-1px);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23bdbdbd' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn-primary {
  display: inline-block;
  margin-top: 24px;
  background: linear-gradient(135deg, #C28823, #D4951F);
  border: none;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(194, 136, 35, 0.4);
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #A67019, #B37E18);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(194, 136, 35, 0.5);
}

.contact-form .btn-primary:active {
  transform: translateY(0);
}

.contact-status {
  margin-top: 16px;
  font-size: 14px;
  color: var(--accent);
  min-height: 20px;
  text-align: center;
  animation: slideIn 0.3s ease-out;
}

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

/* CARD */
.contact-card {
  width: 400px;
  background: linear-gradient(135deg, rgba(15, 15, 16, 0.95), rgba(10, 10, 11, 0.95));
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(64,207,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.card-header h3 {
  margin: 0 0 28px 0;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.card-body {
  position: relative;
  z-index: 1;
}

.card-body .info {
  margin-bottom: 20px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.card-body .info:hover {
  transform: translateX(4px);
}

.card-body .info:hover .info-icon {
  background: linear-gradient(135deg, #40cfff, #0ea5e9);
  box-shadow: 0 6px 16px rgba(64, 207, 255, 0.4);
  transform: translateY(-3px);
}

.card-body .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #40cfff, #0ea5e9);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(64, 207, 255, 0.3);
  transition: all 0.3s ease;
  color: #fff;
  font-size: 18px;
}

.card-body .info-content {
  flex: 1;
  padding-top: 2px;
}

.card-body .info strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.card-body .info span {
  color: #9ca3af;
  font-size: 14px;
  display: block;
  font-weight: 400;
}

.card-body .connect-message {
  margin-top: 32px;
  padding: 20px;
  background: rgba(64, 207, 255, 0.07);
  border-radius: 8px;
  border: 1px solid rgba(64, 207, 255, 0.18);
  transition: all 0.3s ease;
}

.card-body .connect-message:hover {
  background: rgba(64, 207, 255, 0.1);
  border-color: rgba(64, 207, 255, 0.25);
}

.card-body .connect-message h4 {
  color: #fff;
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-body .connect-message p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
  font-weight: 400;
}

.socials {
  margin-top: 32px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.socials strong {
  display: block;
  color: #fff;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.socials .icons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #9ca3af;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.socials .ico::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #40cfff, #0ea5e9);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.socials .ico:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(64, 207, 255, 0.4);
  border-color: #40cfff;
  color: #fff;
}

.socials .ico:hover::before {
  opacity: 1;
}

.socials .ico span {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 980px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0 12px;
    gap: 32px;
  }

  .contact-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-form h2 {
    font-size: 24px;
  }

  .contact-form .row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form .row label {
    min-width: 100%;
  }

  .contact-form .btn-primary {
    width: 100%;
  }

  .contact-card {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .contact-form label {
    margin-bottom: 16px;
  }

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

  .contact-form .btn-primary {
    padding: 14px 24px;
    font-size: 15px;
  }
}
