/* aribellas-fabrics->public->contact.css */

/* Active navbar link */
nav a.active {
  color: #7b527c;
  background: rgba(123, 82, 124, 0.16);
  font-weight: 600;
}

/* Contact hero section */
.contact-hero {
  position: relative;
  min-height: 390px;
  margin-top: -10px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background-image:
    linear-gradient(rgba(44, 36, 52, 0.32), rgba(44, 36, 52, 0.32)),
    url("img/herobg.png");
  background-size: cover;
  background-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.contact-hero-content {
  position: relative;
  z-index: 2;

  width: min(760px, 88%);
  padding: 50px 58px;

  text-align: center;

  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 26px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.contact-label {
  margin-bottom: 14px;

  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;

  color: #8f7a68;
}

.contact-hero-content h1 {
  margin-bottom: 18px;

  font-size: 48px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 1.5px;

  color: #fff8ee;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.35),
    0 12px 26px rgba(0, 0, 0, 0.28);
}

.contact-hero-content p {
  max-width: 620px;
  margin: 0 auto;

  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 1px;

  color: #fff8ee;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

/* Main contact section */
.contact-section {
  width: 100%;
  padding: 90px 20px;
  background: #eef0f2;
}

.contact-wrap {
  max-width: 1150px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}

/* Contact info area */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card,
.contact-note,
.contact-form-box {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 22px 60px rgba(44, 36, 52, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.info-card {
  min-height: 118px;
  padding: 26px;

  display: flex;
  align-items: center;
  gap: 20px;
}

.info-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(123, 82, 124, 0.14);
  color: #7b527c;

  font-size: 24px;
  box-shadow: 0 12px 25px rgba(44, 36, 52, 0.08);
}

.info-card h3,
.contact-note h3 {
  margin-bottom: 8px;

  font-size: 22px;
  font-weight: 400;
  color: #2f3c44;
}

.info-card p,
.contact-note p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.8px;
  color: #5e6970;
}

.contact-note {
  padding: 32px;
}

/* Contact form box */
.contact-form-box {
  padding: 46px 52px;
}

.contact-form-box h2 {
  margin-bottom: 28px;

  font-size: 38px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 1.3px;

  color: #2f3c44;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group label {
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8f7a68;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;

  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;

  color: #2c2434;
  background: rgba(255, 255, 255, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  outline: none;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition: 0.3s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(123, 82, 124, 0.45);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 0 0 4px rgba(123, 82, 124, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-btn {
  margin-top: 8px;
  width: fit-content;

  padding: 15px 28px;

  border: none;
  border-radius: 999px;

  background: #7b527c;
  color: white;

  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow: 0 14px 28px rgba(123, 82, 124, 0.25);
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  background: #6f466f;
  box-shadow: 0 18px 34px rgba(123, 82, 124, 0.32);
}

/* Tablet responsive */
@media (max-width: 950px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 40px 34px;
  }

  .contact-hero-content h1 {
    font-size: 40px;
  }
}

/* Mobile responsive */
@media (max-width: 650px) {
  .contact-hero {
    min-height: 420px;
  }

  .contact-hero-content {
    width: 86%;
    padding: 38px 28px;
    border-radius: 20px;
  }

  .contact-hero-content h1 {
    font-size: 34px;
  }

  .contact-hero-content p {
    font-size: 14px;
  }

  .contact-section {
    padding: 60px 18px;
  }

  .info-card {
    padding: 22px;
    align-items: flex-start;
  }

  .info-icon {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .contact-form-box {
    padding: 34px 26px;
  }

  .contact-form-box h2 {
    font-size: 30px;
  }

  .contact-btn {
    width: 100%;
  }
}