/* Local Dark Theme for Contact Page */
:root {
  --bg: #09090b;
  --text-primary: #f4f4f5;
  --text-muted: #a1a1aa;
  --card-bg: rgba(24, 24, 27, 0.45);
  --card-border: rgba(255, 255, 255, 0.06);
  --accent-indigo: #818cf8;
  --accent-violet: #6366f1;
  --accent-lime: #a3e635;
  --accent-lime-muted: rgba(163, 230, 53, 0.08);
  --accent-lime-border: rgba(163, 230, 53, 0.25);
  
  --font-title: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
}

.contact-section {
  padding: 120px 5% 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact-section h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-section {
  flex: 1;
  background: rgba(24, 24, 27, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin: 0 !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -6px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  background: rgba(9, 9, 11, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-indigo);
  box-shadow: 0 0 0 1px var(--accent-indigo), 0 0 12px rgba(129, 140, 248, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* File upload custom look */
.contact-form input[type="file"] {
  background: transparent;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

/* Submit Button styled as standard CV button */
.contact-form-section .btn {
  font-family: var(--font-title);
  font-weight: 700;
  background: #ffffff;
  color: #09090b;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
  margin-top: 1rem;
}

.contact-form-section .btn:hover {
  transform: translateY(-2px);
  background: #f4f4f5;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

.contact2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(163, 230, 53, 0.04) 100%);
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact2 h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact2 p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact2 img {
  max-width: 180px;
  margin: 0 auto;
  opacity: 0.85;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .contact2 {
    display: none;
  }
}
