/* Contact Page Styles */

.section-inner {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.8125rem 1.75rem;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--purple);
}


/* CONTACT HERO */

.contact-hero {
  position: relative;
  height: 25rem;
  overflow: hidden;
}

.contact-hero .hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #777;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 1.5rem;
}

.hero-overlay h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}


/* CONTACT SECTION*/

.contact-section {
  padding: 4.5rem 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Left: Info */
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.875rem;
}

.contact-intro {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: rgba(107, 33, 168, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}

.detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.125rem;
}

.detail-value {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Help box */
.help-box {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.help-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.help-box p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.btn-help {
  display: inline-block;
  padding: 0.5625rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-help:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* Social */
.connect-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.875rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--gray);
  transition: color var(--transition);
}

.social-icons a:hover {
  color: var(--purple);
}

/* Right: Form */
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-size: 0.88rem;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: none;
  color: var(--black);
  transition: border-color var(--transition);
  resize: vertical;
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
}

.btn-send {
  width: 100%;
  padding: 0.875rem;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.25rem;
}

.btn-send:hover {
  background: var(--purple-light);
}


/* CTA BANNER */

.cta-banner {
  background: var(--purple);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.cta-inner {
  max-width: 35rem;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.cta-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}


/* RESPONSIVE */

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}