/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Màu chữ mặc định trắng */
  background-color: #1a1a1a; /* Nền tối để tạo sự sang trọng */
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-contact__hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background-color: #8B0000; /* Màu đỏ đậm */
}

.page-contact__hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(139, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.page-contact__hero .page-contact__container {
  position: relative;
  z-index: 2;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Vàng kim */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-contact__hero-subtitle {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
}

.page-contact__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #FFD700; /* Vàng kim */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-contact__methods {
  padding: 80px 0;
  background-color: #2a2a2a;
}

.page-contact__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-contact__method-card {
  background-color: #333333;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  background-color: #444444;
}

.page-contact__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-contact__method-title {
  font-size: 1.8em;
  color: #FFD700; /* Vàng kim */
  margin-bottom: 15px;
}

.page-contact__method-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 25px;
}

.page-contact__btn {
  display: inline-block;
  background-color: #FFD700; /* Vàng kim */
  color: #8B0000; /* Đỏ đậm */
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-contact__btn:hover {
  background-color: #e6c200; /* Vàng kim tối hơn */
  color: #6a0000; /* Đỏ đậm tối hơn */
  transform: translateY(-2px);
}

.page-contact__form-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-contact__form-description {
  text-align: center;
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 40px;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2a2a2a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__form-group {
  margin-bottom: 25px;
}

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFD700; /* Vàng kim */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 15px;
  border: 1px solid #555555;
  border-radius: 5px;
  background-color: #333333;
  color: #ffffff;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #888888;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700; /* Vàng kim */
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__submit-btn {
  display: block;
  width: 100%;
  background-color: #8B0000; /* Đỏ đậm */
  color: #FFD700; /* Vàng kim */
  padding: 15px;
  border-radius: 5px;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-contact__submit-btn:hover {
  background-color: #6a0000; /* Đỏ đậm tối hơn */
  color: #ffffff;
  transform: translateY(-2px);
}

.page-contact__cta {
  background-color: #8B0000; /* Đỏ đậm */
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:cta_pattern,luxury,new88_brand]');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}

.page-contact__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(139, 0, 0, 0.8);
  z-index: 1;
}

.page-contact__cta .page-contact__container {
  position: relative;
  z-index: 2;
}

.page-contact__cta-title {
  font-size: 3em;
  color: #FFD700; /* Vàng kim */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-contact__cta-description {
  font-size: 1.2em;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-contact__cta-buttons .page-contact__btn {
  margin: 0 15px;
  min-width: 180px;
}

.page-contact__btn--primary {
  background-color: #FFD700; /* Vàng kim */
  color: #8B0000; /* Đỏ đậm */
}

.page-contact__btn--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

.page-contact__btn--secondary {
  background-color: #333333; /* Xám đậm */
  color: #FFD700; /* Vàng kim */
  border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #444444;
  color: #e6c200;
  border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 80px 0;
  }

  .page-contact__hero-title {
    font-size: 2.5em;
  }

  .page-contact__hero-subtitle {
    font-size: 1em;
  }

  .page-contact__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-contact__methods {
    padding: 60px 0;
  }

  .page-contact__method-card {
    padding: 30px;
  }

  .page-contact__method-title {
    font-size: 1.5em;
  }

  .page-contact__form-section {
    padding: 60px 0;
  }

  .page-contact__contact-form {
    padding: 30px;
  }

  .page-contact__cta {
    padding: 60px 0;
  }

  .page-contact__cta-title {
    font-size: 2.2em;
  }

  .page-contact__cta-description {
    font-size: 1em;
  }

  .page-contact__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-contact__cta-buttons .page-contact__btn {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__section-title {
    font-size: 1.8em;
  }

  .page-contact__method-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__cta-title {
    font-size: 1.8em;
  }
}