/* CONTACT PAGE */
/* HERO SECTION - Solidcore Style: Compact & Clean */
.contact-hero {
  display: grid;
  grid-template-columns: 35% 65%;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  max-height: 50vh;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.hero-left {
  background-color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  color: var(--color-white);
}

.hero-text-content {
  max-width: 100%;
  width: 100%;
  text-align: left;
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-h1);  /* Fluid 36px → 72px */
  font-weight: var(--font-weight-bold);  /* 700 */
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);  /* 1.1 */
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.contact-hero p {
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  color: var(--color-white);
  opacity: 0.85;
  margin-bottom: 0;
  line-height: var(--line-height-body);
  font-weight: 400;
}

.hero-description {
  font-size: var(--font-size-medium);
  opacity: 0.7;
  line-height: var(--line-height-body);
  margin-top: var(--space-sm);
}

.hero-right {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #9B8574;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* CONTACT METHODS - Premium Card Design */
.contact-methods {
  background-color: var(--color-white);
  padding: var(--space-xxxl) var(--space-xl);
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.methods-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  width: 100%;
  box-sizing: border-box;
}

.method-item {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF9F6 100%);
  padding: var(--space-xxl) var(--space-xl);
  border-radius: var(--radius-md);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(201, 168, 118, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.method-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 168, 118, 0.3);
}

.method-item:hover::before {
  opacity: 1;
}

.method-icon {
  width: var(--space-xxl);
  height: var(--space-xxl);
  margin: 0 auto var(--space-lg) auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 118, 0.08) 0%, rgba(201, 168, 118, 0.02) 100%);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 118, 0.2);
  transition: all 0.3s ease;
}

.method-item:hover .method-icon {
  transform: scale(1.05);
  border-color: rgba(201, 168, 118, 0.4);
}

.method-icon svg {
  width: 28px;  /* Intentional icon size */
  height: 28px;
  stroke: var(--color-gold);
}

.method-item h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-heading);
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  letter-spacing: 0.3px;
}

.method-details {
  margin-bottom: var(--space-lg);
}

.method-details p {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  color: var(--color-charcoal);
  opacity: 0.8;
  line-height: var(--line-height-body);
  margin-bottom: var(--space-xs);
}

.method-details a {
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

.method-details a:hover {
  color: var(--color-gold);
}

.method-details strong {
  font-weight: 600;
  opacity: 1;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.social-btn {
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  color: var(--color-charcoal);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(201, 168, 118, 0.3);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  font-weight: 500;
}

.social-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background-color: #F5F3EE;
  padding: var(--space-xxxl) var(--space-xl);
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.form-container h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: var(--line-height-heading);
  color: var(--color-charcoal);
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-xxl);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(201, 168, 118, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

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

.form-group label {
  font-family: var(--font-heading);
  font-size: var(--font-size-small);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--font-size-medium);
  padding: var(--space-sm) var(--space-sm);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-size: var(--font-size-small);
  font-weight: 400;
}

.checkbox-group a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.contact-map { width: 100%; overflow-x: hidden; }
.contact-map iframe { width: 100%; display: block; }

.faq-shortcut { background-color: var(--color-linen); padding: var(--space-xxxl) var(--space-xl); text-align: center; width: 100%; overflow-x: hidden; box-sizing: border-box; }
.shortcut-container { max-width: 600px; margin: 0 auto; width: 100%; box-sizing: border-box; }
.shortcut-container h3 { font-family: var(--font-display); font-size: var(--font-size-h3); font-weight: var(--font-weight-semibold); line-height: var(--line-height-heading); color: var(--color-charcoal); margin-bottom: var(--space-md); }
.shortcut-container p { font-family: var(--font-body); font-size: var(--font-size-body); color: var(--color-charcoal); opacity: 0.8; margin-bottom: var(--space-lg); }

@media (max-width: 1023px) {
  .methods-container { grid-template-columns: 1fr; gap: var(--space-lg); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  body { overflow-x: hidden; max-width: 100vw; }

  /* Hero - Stack Vertically on Mobile */
  .contact-hero {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .hero-left {
    padding: var(--space-xxl) var(--space-md);
    height: auto;
    min-height: 300px;
  }

  .hero-text-content {
    max-width: 100%;
  }

  /* H1 uses fluid clamp() - no override needed */

  /* Uses CSS variable - no override needed */

  .hero-description {
    font-size: var(--font-size-small);
  }

  .hero-right {
    height: 300px;
    min-height: 300px;
  }
  .contact-methods { padding: var(--space-xl) var(--space-md); width: 100%; overflow-x: hidden; }
  .methods-container { grid-template-columns: 1fr; gap: var(--space-md); width: 100%; max-width: 100%; }
  .method-item { padding: var(--space-lg); width: 100%; max-width: 100%; }
  .contact-form-section { padding: var(--space-xl) var(--space-md); width: 100%; overflow-x: hidden; }
  .form-container { width: 100%; max-width: 100%; }
  /* H2 uses fluid clamp() - no override needed */
  .contact-form { padding: var(--space-lg); width: 100%; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: var(--space-md); }
  .faq-shortcut { padding: var(--space-xl) var(--space-md); width: 100%; overflow-x: hidden; }
  .shortcut-container { width: 100%; max-width: 100%; }
  /* H3 uses fluid clamp() - no override needed */
  .shortcut-container .btn { width: 100%; }
}
