/* --- CONTACT PAGE REDESIGN --- */
.contact-page {
  background-color: var(--color-offwhite); /* #FAFAF8 */
  color: var(--color-anthracite);
  padding-top: 150px; /* Offset for absolute header */
}

/* Light Theme Header Override */
.luxury-header.light-theme a,
.luxury-header.light-theme .logo-title,
.luxury-header.light-theme .lang-active,
.luxury-header.light-theme .header-status,
.luxury-header.light-theme .header-left a,
.luxury-header.light-theme .header-right a {
  color: var(--color-anthracite);
}
.luxury-header.light-theme .header-top {
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
}
.luxury-header.light-theme .logo-subtitle {
  color: var(--color-anthracite);
  opacity: 0.8;
}
.luxury-header.light-theme .main-nav a::after {
  background-color: var(--color-terracotta);
}
.luxury-header.light-theme .lang-separator {
  color: var(--color-anthracite);
  opacity: 0.3;
}

/* Hero Section */
.contact-hero-new {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}
.contact-hero-new h1 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.contact-hero-new p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Channels (3 Cards) */
.contact-channels {
  max-width: 1200px;
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}
.channel-card {
  background-color: #fff;
  border: 1px solid rgba(28, 28, 28, 0.05);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.channel-icon {
  margin-bottom: 1.5rem;
  color: var(--color-olive-dark);
}
.channel-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.channel-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.5;
  flex-grow: 1;
}
.channel-live-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-olive-dark);
  margin-bottom: 1.5rem;
}
.btn-channel {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 2px;
  width: 100%;
}
.btn-outline {
  border: 1px solid var(--color-anthracite);
  color: var(--color-anthracite);
}
.btn-outline:hover {
  background-color: var(--color-anthracite);
  color: #fff;
}
.btn-terracotta {
  background-color: var(--color-terracotta);
  color: #fff;
}
.btn-terracotta:hover {
  background-color: #b05c43;
}
.btn-olive {
  background-color: var(--color-olive-dark);
  color: #fff;
}
.btn-olive:hover {
  background-color: #2c3628;
}

/* Specialists Section */
.contact-specialists {
  max-width: 1200px;
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}
.specialists-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 2px;
}
.specialists-content h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.specialists-content p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 2rem;
}
.specialists-address {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
  padding-top: 2rem;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
  margin-bottom: 2rem;
}

/* Opening Hours */
.opening-hours {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  font-family: var(--font-body);
  color: var(--color-anthracite);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.hours-row:nth-child(odd) {
  background-color: #F6F5F2;
}
.timezone-note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 1rem;
}

/* Form Section */
.contact-form-section {
  background-color: #fff;
  padding: 6rem 2rem;
}
.form-container {
  max-width: 800px;
  margin: 0 auto;
}
.form-container h2 {
  font-family: var(--font-title);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 400;
}
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.quick-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.quick-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.quick-form label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--color-anthracite);
}
.quick-form input,
.quick-form textarea {
  border: none;
  border-bottom: 1px solid rgba(28, 28, 28, 0.2);
  background: transparent;
  padding: 0.8rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-anthracite);
  transition: border-color 0.3s ease;
  outline: none;
}
.quick-form input:focus,
.quick-form textarea:focus {
  border-bottom-color: var(--color-olive-dark);
}
.quick-form textarea {
  resize: vertical;
  min-height: 100px;
}
.quick-form input::placeholder,
.quick-form textarea::placeholder {
  color: var(--color-anthracite);
  opacity: 0.6;
}
.quick-form .btn-submit {
  align-self: center;
  background-color: var(--color-olive-dark);
  color: #fff;
  border: none;
  padding: 1.2rem 3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}
.quick-form .btn-submit:hover {
  background-color: #2c3628;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-hero-new h1 {
    font-size: 2.8rem;
  }
  .contact-channels {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-specialists {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .specialists-img {
    height: 400px;
    order: -1;
  }
  .quick-form .form-row {
    grid-template-columns: 1fr;
  }
}
