/* ============================================================
   SUVED CREATIONS - Contact Page Styles
   ============================================================ */

/* --- Contact Layout --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

/* --- Contact Info --- */
.contact-info-card {
  padding: clamp(30px, 4vw, 60px);
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.contact-info-title {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 5px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

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

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-social-link {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
}

.contact-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* --- Contact Form --- */
.contact-form-wrapper {
  padding: clamp(30px, 4vw, 60px);
  background: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-submit-wrapper {
  margin-top: 40px;
}

.form-message {
  display: none;
  padding: 15px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  border: 1px solid;
}

.form-message.success {
  display: block;
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.3);
  background: rgba(76, 175, 80, 0.05);
}

.form-message.error {
  display: block;
  color: #f44336;
  border-color: rgba(244, 67, 54, 0.3);
  background: rgba(244, 67, 54, 0.05);
}

/* --- Map Section --- */
.map-section {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(95%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.map-section:hover iframe {
  filter: grayscale(30%) contrast(95%);
  opacity: 1;
}

.map-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--bg-primary);
  padding: 25px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.map-overlay p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-section {
    height: 350px;
  }

  .map-overlay {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .faq-question span {
    font-size: 0.95rem;
  }
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 25px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}
