.contact-section {
  /* padding: 60px 20px; */
  /* background: var(--surface); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem;
  position: relative;
  background-image: linear-gradient(
      rgba(15, 23, 42, 0.6),
      rgba(15, 23, 42, 0.9)
    ),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-header h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.contact-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-form, .contact-info {
  background:#0f172aa8 ;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  flex: 1 1 400px;
  border: 1px solid var(--border);
  transition: all 0.5s ease-in-out;
}

.contact-form:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--secondary);
}
.contact-info:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--secondary);
}

.contact-form h2, .contact-info h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.form-group {
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 12px 15px !important;
  background: var(--surface-hover);
  color: var(--primary) !important;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem !important;
  transition: border-color 0.3s ease;
}
input::placeholder,
textarea::placeholder {
  color: var(--text-secondary);
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

textarea {
  resize: vertical;
}

.send-btn {
  background: var(--secondary);
  color: var(--text);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}
.send-btn:hover {
  background: var(--surface-hover);
}

.contact-info p {
  font-size: 1rem;
  margin: 10px 0;
  color: var(--text-secondary);
}
.contact-info i {
  color: var(--secondary);
  /* margin-right: 10px; */
  padding: 12px;
}

.social-icons-contact {
  /* margin-top: 20px; */
  display: flex;
}
.social-icons-contact a {
  color: var(--text);
  background: var(--secondary);
  /* padding: 12px; */
  margin-right: 10px;
  border-radius: 50%;
  /* padding: 12px; */
  /* display: inline-block; */
  transition: background 0.3s ease;
}
.social-icons-contact a:hover {
  background: var(--surface-hover);
}
.social-icons-contact i {
  color: var(--text);
  font-size: 1.2rem;
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-block {
  margin-bottom: 20px;
}

.country-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
