/* =========================
   CONTACT SECTION
========================= */

.contact {
  text-align: center;
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* QUOTE */
.contact-quote {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 36px;
  color: var(--text-main);
}

/* BUTTON */
.contact-btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;

  color: #fff;
  background: linear-gradient(135deg, var(--pink), #7a6cff);

  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 95, 162, 0.35);
}

/* DIVIDER */
.contact-divider {
  width: 100%;
  max-width: 420px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  margin: 48px auto;
}

/* LOGO */
.contact-logo {
  width: 140px;
  margin-bottom: 26px;
}

/* INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info a,
.contact-info span {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--pink);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .contact-quote {
    font-size: 1.25rem;
    margin-bottom: 28px;
  }

  .contact-logo {
    width: 120px;
  }

  .contact-info a,
  .contact-info span {
    font-size: 0.9rem;
  }
}
.contact-white {
  color: #ffffff;
}
.contact-copyright {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  letter-spacing: 0.5px;
}
.contact-copyright {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.contact-wrapper:hover .contact-copyright {
  opacity: 0.8;
}




