/* style/vip-privileges-custom-services.css */

:root {
  --primary-color: #E44D26;
  --secondary-color: #333333;
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --light-bg-color: #f8f8f8;
  --medium-gray: #e0e0e0;
  --dark-bg-1: #0d0d0d; /* Assuming from shared.css */
}

.page-vip-privileges-custom-services {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--light-text-color); /* Default text color for the main page, assuming dark body background */
  background-color: var(--dark-bg-1);
  padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-vip-privileges-custom-services .text-highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* Video Section */
.page-vip-privileges-custom-services__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 for fixed navigation bar */
  background-color: var(--secondary-color);
}

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

.page-vip-privileges-custom-services__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.3);
}

.page-vip-privileges-custom-services__video,
.page-vip-privileges-custom-services__video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
}

/* Title Section */
.page-vip-privileges-custom-services__title-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-privileges-custom-services__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__title-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-vip-privileges-custom-services__title-description a {
  color: var(--light-text-color);
  text-decoration: underline;
}

.page-vip-privileges-custom-services__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-vip-privileges-custom-services__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--secondary-color);
  color: var(--light-text-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: 2px solid var(--secondary-color);
}

.page-vip-privileges-custom-services__cta-button:hover {
  background-color: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
}

.page-vip-privileges-custom-services__cta-button--secondary {
  background-color: transparent;
  border-color: var(--light-text-color);
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--light-text-color);
}

.page-vip-privileges-custom-services__cta-buttons--center {
  margin-top: 40px;
}

/* Content Area */
.page-vip-privileges-custom-services__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--dark-text-color); /* Light background, dark text */
  background-color: var(--light-bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-vip-privileges-custom-services__content-area p {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--dark-text-color);
}

.page-vip-privileges-custom-services__content-area a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-vip-privileges-custom-services__content-area a:hover {
  text-decoration: underline;
}

.page-vip-privileges-custom-services__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.page-vip-privileges-custom-services__section-title:first-of-type {
  margin-top: 0;
}

.page-vip-privileges-custom-services__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-privileges-custom-services__feature-card {
  background-color: #ffffff; /* Explicitly white background for cards */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--dark-text-color); /* Dark text on white background */
}

.page-vip-privileges-custom-services__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-vip-privileges-custom-services__feature-icon {
  width: 100%; /* Ensure image fills card width */
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 4px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-privileges-custom-services__feature-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* FAQ Section */
.page-vip-privileges-custom-services__faq-section {
  background-color: var(--secondary-color);
  padding: 80px 20px;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-privileges-custom-services__faq-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--secondary-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-privileges-custom-services__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #444444;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__faq-question:hover {
  background: #555555;
}

.page-vip-privileges-custom-services__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-vip-privileges-custom-services__faq-item.active .page-vip-privileges-custom-services__faq-toggle {
  color: var(--light-text-color);
  transform: rotate(45deg);
}

.page-vip-privileges-custom-services__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__faq-item.active .page-vip-privileges-custom-services__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain any content */
  padding: 20px 25px !important;
  opacity: 1;
  background: #3a3a3a;
  border-radius: 0 0 8px 8px;
}

.page-vip-privileges-custom-services__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: normal;
}

/* Brand Section */
.page-vip-privileges-custom-services__brand-section {
  padding: 80px 20px;
  background-color: var(--light-bg-color);
  color: var(--dark-text-color);
}

.page-vip-privileges-custom-services__brand-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-vip-privileges-custom-services__brand-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: var(--secondary-color);
}

.page-vip-privileges-custom-services__brand-content p {
  margin-bottom: 25px;
  font-size: 1.05em;
  line-height: 1.7;
  color: var(--dark-text-color);
}

.page-vip-privileges-custom-services__brand-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 25px;
  color: var(--dark-text-color);
}

.page-vip-privileges-custom-services__brand-content li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-vip-privileges-custom-services__brand-item {
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-vip-privileges-custom-services__brand-item h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

/* Blog Section */
.page-vip-privileges-custom-services__blog-section {
  background-color: var(--secondary-color);
  padding: 80px 20px;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-vip-privileges-custom-services__blog-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: var(--light-text-color);
}

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

.page-vip-privileges-custom-services__blog-item {
  background-color: #444444; /* Darker card background */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-privileges-custom-services__blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-privileges-custom-services__blog-link {
  display: block;
  text-decoration: none;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__blog-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-vip-privileges-custom-services__blog-item-title {
  font-size: 1.4em;
  margin: 20px 20px 10px;
  color: var(--light-text-color);
  line-height: 1.4;
}

.page-vip-privileges-custom-services__blog-item-title .text-highlight {
  color: var(--primary-color);
}

.page-vip-privileges-custom-services__blog-item-excerpt {
  font-size: 0.95em;
  margin: 0 20px 15px;
  opacity: 0.8;
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__blog-item-date {
  display: block;
  font-size: 0.85em;
  margin: 0 20px 20px;
  opacity: 0.6;
  color: var(--light-text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-privileges-custom-services__main-title {
    font-size: 2.8em;
  }

  .page-vip-privileges-custom-services__section-title,
  .page-vip-privileges-custom-services__faq-title,
  .page-vip-privileges-custom-services__brand-title,
  .page-vip-privileges-custom-services__blog-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-vip-privileges-custom-services {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-privileges-custom-services__video-section {
    padding-top: 10px !important; /* Mobile: Adjust for fixed navigation bar */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-vip-privileges-custom-services__video-wrapper {
    border-radius: 4px;
  }
  
  .page-vip-privileges-custom-services__video,
  .page-vip-privileges-custom-services__video-iframe {
    border-radius: 4px;
  }

  .page-vip-privileges-custom-services__title-section {
    padding: 60px 15px;
  }

  .page-vip-privileges-custom-services__main-title {
    font-size: 2.2em;
  }

  .page-vip-privileges-custom-services__title-description {
    font-size: 1em;
  }

  .page-vip-privileges-custom-services__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-privileges-custom-services__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-privileges-custom-services__content-area {
    padding: 40px 15px;
    border-radius: 4px;
  }

  .page-vip-privileges-custom-services__section-title,
  .page-vip-privileges-custom-services__faq-title,
  .page-vip-privileges-custom-services__brand-title,
  .page-vip-privileges-custom-services__blog-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 25px;
  }

  .page-vip-privileges-custom-services__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-privileges-custom-services__feature-card {
    padding: 25px;
  }

  .page-vip-privileges-custom-services__faq-section {
    padding: 60px 15px;
  }

  .page-vip-privileges-custom-services__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-vip-privileges-custom-services__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-vip-privileges-custom-services__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  
  .page-vip-privileges-custom-services__faq-answer {
    padding: 0 15px;
  }
  
  .page-vip-privileges-custom-services__faq-item.active .page-vip-privileges-custom-services__faq-answer {
    padding: 15px !important;
  }

  .page-vip-privileges-custom-services__brand-section {
    padding: 60px 15px;
  }

  .page-vip-privileges-custom-services__brand-item h3 {
    font-size: 1.5em;
  }

  .page-vip-privileges-custom-services__blog-section {
    padding: 60px 15px;
  }

  .page-vip-privileges-custom-services__blog-item-image {
    height: 180px;
  }

  .page-vip-privileges-custom-services__blog-item-title {
    font-size: 1.2em;
  }

  /* Mobile image adaptation - IMPORTANT */
  .page-vip-privileges-custom-services img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-vip-privileges-custom-services__section,
  .page-vip-privileges-custom-services__card,
  .page-vip-privileges-custom-services__container,
  .page-vip-privileges-custom-services__features-grid,
  .page-vip-privileges-custom-services__blog-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Ensure main content area's padding is correctly applied for mobile */
  .page-vip-privileges-custom-services__content-area {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* Contrast Fixes */
.page-vip-privileges-custom-services__dark-section {
  background: var(--secondary-color);
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__light-bg {
  background: var(--light-bg-color);
  color: var(--dark-text-color);
}

.page-vip-privileges-custom-services__dark-bg {
  background: var(--secondary-color);
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__cta-button {
  background-color: var(--primary-color);
  color: var(--light-text-color);
  border: 2px solid var(--primary-color);
}

.page-vip-privileges-custom-services__cta-button:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-vip-privileges-custom-services__cta-button--secondary {
  background-color: transparent;
  border-color: var(--light-text-color);
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--light-text-color);
}

.page-vip-privileges-custom-services__faq-question {
  background: var(--secondary-color);
  color: var(--light-text-color);
}

.page-vip-privileges-custom-services__faq-question:hover {
  background: lighten(var(--secondary-color), 10%);
}

.page-vip-privileges-custom-services__faq-item.active .page-vip-privileges-custom-services__faq-answer {
  background: lighten(var(--secondary-color), 15%);
}

.page-vip-privileges-custom-services__feature-card {
  background-color: #ffffff;
  color: var(--dark-text-color);
}

.page-vip-privileges-custom-services__blog-item {
  background-color: lighten(var(--secondary-color), 10%);
}

.page-vip-privileges-custom-services__blog-item-title .text-highlight {
  color: var(--primary-color);
}