/* ===== Contact ===== */
#contact {
  padding: 100px 0;
  background: #ffffff;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.contact-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 42px;
  text-transform: uppercase;
  color: #17171a;
  text-align: center;
}

.contact-subtitle {
  text-align: center;
  font-size: 17px;
  color: #6b6b72;
  max-width: 600px;
  margin: 14px auto 52px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: #f4f4f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 36px;
}

.contact-field {
  margin-bottom: 20px;
}

.contact-field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #17171a;
  margin-bottom: 8px;
}

.contact-optional {
  font-weight: 400;
  color: #8f8f96;
  text-transform: none;
  letter-spacing: 0;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #17171a;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 13px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #a3a3aa;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #e10600;
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.15);
}

.contact-field input.invalid,
.contact-field textarea.invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.contact-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: #25d366;
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:not(.contact-info-card-static):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: #e10600;
}

.contact-info-card i {
  font-size: 22px;
  color: #ffffff;
  background: #e10600;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #17171a;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 14.5px;
  color: #6b6b72;
}

/* ===== CTA final ===== */
#cta {
  padding: 90px 24px;
  background:
    linear-gradient(rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0.9)),
    url('https://images.unsplash.com/photo-1494905998402-395d579af36f?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-subtitle {
  font-size: 18px;
  color: #cfcfd4;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  background: #e10600;
  padding: 16px 38px;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  background: #ff2a1a;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(225, 6, 0, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  #cta { background-attachment: scroll; }
}

/* ===== Responsive ===== */
@media (min-width: 1440px) {
  .contact-inner { max-width: 1260px; padding: 0 64px; }
}

@media (max-width: 1024px) {
  #contact { padding: 80px 0; }
  .contact-inner { padding: 0 32px; }
  .contact-title { font-size: 36px; }
  .cta-title { font-size: 34px; }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-subtitle { font-size: 15px; margin-bottom: 36px; }
  .contact-form { padding: 28px; }
  #cta { background-attachment: scroll; padding: 70px 20px; }
}

@media (max-width: 480px) {
  #contact { padding: 64px 0; }
  .contact-inner { padding: 0 16px; }
  .contact-title { font-size: 28px; }
  .contact-form { padding: 22px; }
  .cta-title { font-size: 26px; }
  .cta-subtitle { font-size: 15px; }
  .cta-btn { padding: 14px 30px; font-size: 15px; }
}
