
:root {
    --color-text: #D1D9E6;
    --color-heading: #F1F5FF;
    --color-subheading: #B8C3D9;
    --color-link: #d0ddf8;
    --color-link-hover: #E0EAFF;
    --color-button-bg: linear-gradient(135deg, #8FA8FF, #b9cffd, #B8C3D9);
    --color-button-bghover: linear-gradient(135deg,#b9cffd,#8FA8FF);
    --color-button-text: #253155;
    --color-quote: #E6ECFF;
    --color-border: rgba(255, 255, 255, 0.14);
    --color-accent: #9BB3FF;
}

/* CONTACT PAGE */
.contact-page {
  padding: 100px 20px;
  background: #ffffff00;
  color: var(--color-text);
}

/* Shared */
.section-title {
  font-size: 2.4rem;
  margin-bottom: 12px;
  text-align: center;
  background: linear-gradient(90deg, #8FA8FF, #d1d8f1, #8FA8FF);
    animation: colorFlow 5s infinite linear;
     background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  opacity: 0.8;
  text-align: center;
  margin-bottom: 60px;
}

/* CONTACT METHODS */
.contact-methods {
    margin-top:-80px;
  height: 100vh;
  display: grid;
  place-items: center; /* perfect center */
}
.contact-methods-inner {
  text-align: center;
  width: 100%;
  max-width: 1100px;
}



.methods-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.method-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 35px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.method-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #8FA8FF, #d1d8f1, #8FA8FF);
    animation: colorFlow 5s infinite linear;
     background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.method-card p {
  opacity: 0.85;
}

.method-card.highlight {
  background: rgba(255, 255, 255, 0.15);
}

/* FORM SECTION */
.contact-form-section {
  margin-top: 120px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 24px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

/* BUTTON */
.send-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-button-bg);
  color: var(--color-button-text);
      font-weight: 600;

  font-size: 1rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.send-btn:hover {
    background:var(--color-button-bghover);
  transform: translateY(-2px);
  opacity: 0.9;
}
/* ICONS */
.method-icon {
 color:var(--color-button-bg);
  font-size: 2.2rem;
  margin-bottom: 18px;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.method-card:hover .method-icon {
  transform: translateY(-4px);
  opacity: 1;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .methods-grid {
  grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2rem;
  }
  .contact-methods {
    margin-top:50px;
  min-height: 100vh;
}

}
