/* style/contact.css */

/* Variables and Base Styles (Scoped to .page-contact) */
.page-contact {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #008000; /* Green */
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --bg-dark-card: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
  --bg-light-card: #ffffff;
  --border-color-light: rgba(255, 255, 255, 0.2);
  --border-color-dark: #e0e0e0;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-light); /* Body background is dark, so text is light */
  background-color: transparent; /* Main content background will be handled by body or sections */
}

.page-contact strong.page-contact__keyword {
  color: var(--primary-color);
  font-weight: bold;
}

/* General Container Styling */
.page-contact__container,
.page-contact__hero-container,
.page-contact__info-container,
.page-contact__form-container,
.page-contact__faq-container,
.page-contact__brand-container,
.page-contact__blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Video Section (Top-most, requires padding-top for fixed header) */
.page-contact__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust based on fixed header height */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.8));
}

.page-contact__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-contact__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-contact__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event */
}

.page-contact__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-contact__video-link:hover .page-contact__video-overlay {
  opacity: 1;
}

.page-contact__video-click-hint {
  color: var(--text-color-light);
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(255, 215, 0, 0.8); /* Primary color with transparency */
  border-radius: 5px;
  white-space: nowrap;
}

.page-contact__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-contact__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-dark); /* Dark text on gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-contact__play-now-button:hover {
  background: var(--secondary-color); /* Green on hover */
  color: var(--text-color-light); /* Light text on green button */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-contact__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


/* Hero Section (Module 1: H1 + CTA) */
.page-contact__hero-section {
  background: linear-gradient(45deg, rgba(0, 128, 0, 0.8), rgba(255, 215, 0, 0.2)); /* Green to Gold gradient */
  padding: 80px 0;
  text-align: center;
  color: var(--text-color-light);
}

.page-contact__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color); /* Gold title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}}