/* Draft Footer Styles */
.draft-footer {
  background: linear-gradient(180deg, #2d2839 0%, #1a1622 100%);
  color: #fff;
}

/* CTA Section */
.draft-footer-cta {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #3a3547 0%, #2d2839 100%);
}

.draft-cta-content {
  max-width: 1100px;
}

.draft-cta-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
}

.draft-cta-highlight {
  color: var(--gold);
  font-weight: 400;
}

.draft-cta-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #b8b8b8;
  margin-bottom: 2.5rem;
}

.draft-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.draft-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.draft-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.draft-btn:hover svg {
  transform: translate(3px, -3px);
}

.draft-btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  color: #1a1622;
}

.draft-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--gold) 40%, transparent);
}

.draft-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.draft-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Cards Section */
.draft-footer-cards {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, #2d2839 0%, #1a1622 100%);
}

.draft-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.draft-card {
  background: rgba(58, 53, 71, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.draft-card:hover {
  background: rgba(58, 53, 71, 0.6);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.draft-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}

.draft-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.draft-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.draft-contact-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.draft-contact-link:hover {
  color: var(--gold);
}

.draft-send-message {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.draft-send-message svg {
  width: 16px;
  height: 16px;
}

.draft-send-message:hover {
  gap: 0.75rem;
}

/* Social Icons */
.draft-social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.draft-social-link {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(106, 27, 154, 0.2);
  border: 1px solid rgba(106, 27, 154, 0.3);
  transition: all 0.3s ease;
  color: var(--icon-purple);
}

.draft-social-link:hover {
  background: var(--icon-purple);
  border-color: var(--icon-purple);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(106, 27, 154, 0.4);
}

.draft-social-link:hover svg {
  color: #fff;
}

.draft-social-link svg {
  width: 24px;
  height: 24px;
  transition: color 0.3s ease;
}

.draft-social-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8b8b8;
}

/* Newsletter Card */
.draft-card-newsletter {
  background: rgba(133, 104, 72, 0.15);
  border-color: rgba(212, 175, 55, 0.2);
}

.draft-card-newsletter:hover {
  background: rgba(133, 104, 72, 0.25);
  border-color: rgba(212, 175, 55, 0.3);
}

.draft-newsletter-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8b8b8;
  margin-bottom: 1rem;
}

.draft-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.draft-newsletter-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.draft-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.draft-newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 15%, transparent);
}

.draft-newsletter-submit {
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-accent) 100%);
  border: none;
  border-radius: 8px;
  color: #1a1622;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.draft-newsletter-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--gold) 40%, transparent);
}

.draft-newsletter-message {
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.draft-newsletter-message.success,
.draft-newsletter-message.error {
  opacity: 1;
  transform: translateY(0);
}

.draft-newsletter-message.success {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.draft-newsletter-message.error {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* Bottom Bar */
.draft-footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.draft-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.draft-bottom-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.draft-bottom-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.draft-bottom-nav a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.draft-bottom-nav a:hover {
  color: var(--gold);
}

.draft-bottom-copyright {
  color: #888;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .draft-footer-cta {
    padding: 4rem 0;
  }

  .draft-cta-heading {
    font-size: 2.5rem;
  }

  .draft-cta-text br {
    display: none;
  }

  .draft-cta-buttons {
    flex-direction: column;
  }

  .draft-btn {
    width: 100%;
    justify-content: center;
  }

  .draft-footer-cards {
    padding: 2rem 0;
  }

  .draft-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .draft-card {
    padding: 1.5rem;
  }

  .draft-social-icons {
    justify-content: flex-start;
  }

  .draft-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .draft-bottom-nav {
    justify-content: center;
  }
}
