/* Ayelinklux - Contact Page */

/* =========================================================
   PAGE HERO
========================================================= */
.contact-hero {
  position: relative;
  padding: 90px 40px 70px;
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(27,46,94,0.02) 100%);
  overflow: hidden;
  text-align: center;
  margin-top: 0;
}
.contact-hero-bg-pattern {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(244,123,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.contact-hero-dots {
  position: absolute;
  bottom: 5%;
  left: 4%;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle, rgba(27,46,94,0.12) 2px, transparent 2px);
  background-size: 26px 26px;
  z-index: 0;
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}
.contact-hero-title {
  font-size: 46px;
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 16px 0 16px;
}
.contact-hero-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   QUICK CONTACT CARDS
========================================================= */
.contact-cards-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(27,46,94,0.1);
  border-color: var(--orange);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(244,123,32,0.1);
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 18px;
}
.contact-card h3 {
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.contact-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-card-link i {
  font-size: 11px;
  transition: transform 0.3s;
}
.contact-card:hover .contact-card-link i {
  transform: translateX(4px);
}
.contact-card-link-muted {
  color: var(--text-light);
}

.contact-card-featured {
  background: linear-gradient(135deg, var(--navy), #14625f);
  border-color: var(--navy);
}
.contact-card-featured .contact-card-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.contact-card-featured h3,
.contact-card-featured p {
  color: var(--white);
}
.contact-card-featured p {
  opacity: 0.85;
}
.contact-card-featured .contact-card-link {
  color: var(--white);
}
.contact-card-featured:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 36px rgba(27,46,94,0.25);
}

.contact-card-static {
  cursor: default;
}
.contact-card-static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

/* =========================================================
   FORM + SIDE PANEL
========================================================= */
.contact-main-section {
  padding-top: 20px;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}
.contact-form-title {
  font-size: 28px;
  color: var(--text-dark);
  margin: 12px 0 10px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.contact-field-full {
  margin-bottom: 8px;
}
.contact-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  outline: none;
  transition: all 0.3s;
  resize: vertical;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,123,32,0.1);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9CA3AF;
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* SIDE PANEL */
.contact-side-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-whatsapp-card {
  background: linear-gradient(135deg, var(--navy), #14625f);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  color: var(--white);
}
.contact-whatsapp-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  font-size: 26px;
}
.contact-whatsapp-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-whatsapp-card p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.88;
  margin-bottom: 24px;
}
.contact-whatsapp-btn {
  width: 100%;
  justify-content: center;
}

.contact-follow-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.contact-follow-card h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-follow-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}
.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.contact-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s;
}
.contact-social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* =========================================================
   CONTACT INTRO
========================================================= */
.contact-intro-section {
  padding-top: 40px;
  padding-bottom: 20px;
  text-align: center;
}
.contact-intro-header h2 {
  font-size: 38px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-intro-header p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.contact-intro-text p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   CONTACT METHODS
========================================================= */
.contact-methods-section {
  padding-top: 20px;
  padding-bottom: 40px;
}
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-method-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,46,94,0.1);
  border-color: var(--orange);
}
.contact-method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(244,123,32,0.1);
  color: var(--orange);
  font-size: 24px;
  margin: 0 auto 16px;
}
.contact-method-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.contact-method-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-method-detail {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-method-detail a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-method-detail a:hover {
  color: var(--navy);
  text-decoration: underline;
}
.phone-placeholder {
  color: var(--text-light);
  font-style: italic;
}

/* =========================================================
   CONTACT FORM SECTION
========================================================= */
.contact-form-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.contact-form-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
}
.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form-header h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.contact-form-header p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
.contact-form-row:last-of-type {
  margin-bottom: 0;
}
.contact-field {
  display: flex;
  flex-direction: column;
}
.contact-field-full {
  grid-column: 1 / -1;
}
.contact-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.required {
  color: #ef4444;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: all 0.3s;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,123,32,0.1);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9CA3AF;
}
.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

/* =========================================================
   SUPPORT TOPICS
========================================================= */
.support-topics-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--white);
}
.support-topics-header {
  text-align: center;
  margin-bottom: 40px;
}
.support-topics-header h2 {
  font-size: 32px;
  color: var(--text-dark);
}
.support-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.support-topic-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
.support-topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,46,94,0.1);
  border-color: var(--orange);
}
.topic-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(244,123,32,0.1);
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 16px;
}
.support-topic-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.support-topic-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   BEFORE CONTACT SECTION
========================================================= */
.before-contact-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, rgba(244,123,32,0.05) 0%, rgba(244,123,32,0.02) 100%);
}
.before-contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.before-contact-wrapper h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.before-contact-wrapper > p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.before-contact-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}
.before-contact-checklist li {
  font-size: 15px;
  color: var(--text-dark);
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(244,123,32,0.1);
}
.before-contact-checklist li:last-child {
  border-bottom: none;
}
.before-contact-checklist i {
  color: #4cb050;
  font-size: 18px;
  flex-shrink: 0;
}

/* =========================================================
   COMPANY INFO SECTION
========================================================= */
.company-info-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--off-white);
}
.company-info-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.company-info-wrapper h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.company-info-wrapper p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
  .support-topics-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 600px) {
  .contact-intro-header h2 {
    font-size: 28px;
  }
  .contact-form-header h2 {
    font-size: 24px;
  }
  .support-topics-header h2 {
    font-size: 24px;
  }
  .before-contact-wrapper h2 {
    font-size: 22px;
  }
}