/* style/vip-services.css */

/* Base Styles & Typography */
.page-vip-services {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light backgrounds */
    line-height: 1.6;
}

.page-vip-services__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-vip-services__section-title,
.page-vip-services__cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-vip-services__section-description,
.page-vip-services__cta-description {
    font-size: 1.1rem;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-vip-services__hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-vip-services__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7); /* Darken image for better text contrast */
}

.page-vip-services__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Additional overlay for contrast */
    z-index: 2;
}

.page-vip-services__hero-content {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
    max-width: 900px;
    padding: 0 20px;
}

.page-vip-services__hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-vip-services__hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-services__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.page-vip-services__btn-primary,
.page-vip-services__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.page-vip-services__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-vip-services__btn-primary:hover {
    background-color: #1a7bb5;
    border-color: #1a7bb5;
}

.page-vip-services__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-vip-services__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

/* Video Section */
.page-vip-services__video-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

.page-vip-services__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-vip-services__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Benefits Overview */
.page-vip-services__benefits-overview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

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

.page-vip-services__benefit-card {
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-services__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-services__benefit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-vip-services__benefit-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 15px;
}

.page-vip-services__benefit-text {
    font-size: 1rem;
    color: #555555;
}

/* Exclusive Privileges */
.page-vip-services__exclusive-privileges {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-vip-services__exclusive-privileges .page-vip-services__section-title,
.page-vip-services__exclusive-privileges .page-vip-services__section-description {
    color: #FFFFFF;
}

.page-vip-services__privilege-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-vip-services__privilege-item:last-child {
    margin-bottom: 0;
}

.page-vip-services__privilege-item--reverse {
    flex-direction: row-reverse;
}

.page-vip-services__privilege-text-content {
    flex: 1;
}

.page-vip-services__privilege-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-vip-services__privilege-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-services__privilege-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-vip-services__privilege-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f0f8ff;
}

.page-vip-services__privilege-list {
    list-style-type: disc;
    padding-left: 25px;
    font-size: 1rem;
    color: #f0f8ff;
}

.page-vip-services__privilege-list li {
    margin-bottom: 10px;
}

/* How to Join */
.page-vip-services__how-to-join {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-vip-services__step-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-services__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-vip-services__step-icon {
    font-size: 2.5rem;
    font-weight: bold;
    color: #26A9E0;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #e0f2ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-vip-services__step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
}

.page-vip-services__step-text {
    font-size: 1rem;
    color: #555555;
}

.page-vip-services__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.page-vip-services__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-vip-services__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-vip-services__faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-vip-services__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f0f8ff;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #26A9E0;
    transition: background-color 0.3s ease;
}

.page-vip-services__faq-question:hover {
    background-color: #e6f2ff;
}

.page-vip-services__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-vip-services__faq-item.active .page-vip-services__faq-toggle {
    transform: rotate(45deg);
}

.page-vip-services__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: #FFFFFF;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

.page-vip-services__faq-item.active .page-vip-services__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-vip-services__faq-answer p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Final CTA Section */
.page-vip-services__cta-section {
    padding: 80px 0;
    background-color: #26A9E0;
    color: #FFFFFF;
    text-align: center;
}

.page-vip-services__cta-section .page-vip-services__cta-title,
.page-vip-services__cta-section .page-vip-services__cta-description {
    color: #FFFFFF;
}

.page-vip-services__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-vip-services__hero-title {
        font-size: 3rem;
    }
    .page-vip-services__section-title {
        font-size: 2rem;
    }
    .page-vip-services__privilege-title {
        font-size: 1.8rem;
    }
    .page-vip-services__privilege-item {
        flex-direction: column;
        text-align: center;
    }
    .page-vip-services__privilege-item--reverse {
        flex-direction: column;
    }
    .page-vip-services__privilege-text-content {
        order: 2;
    }
    .page-vip-services__privilege-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
    .page-vip-services__privilege-list {
        text-align: left;
        padding-left: 20px;
        margin: 0 auto;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-vip-services {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-vip-services__hero-section {
        height: 60vh;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-vip-services__hero-title {
        font-size: 2.2rem;
    }
    .page-vip-services__hero-description {
        font-size: 1rem;
    }
    .page-vip-services__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-services__btn-primary,
    .page-vip-services__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .page-vip-services__section-title,
    .page-vip-services__cta-title {
        font-size: 1.8rem;
    }
    .page-vip-services__section-description,
    .page-vip-services__cta-description {
        font-size: 0.95rem;
    }
    .page-vip-services__benefits-overview,
    .page-vip-services__exclusive-privileges,
    .page-vip-services__how-to-join,
    .page-vip-services__faq-section,
    .page-vip-services__cta-section {
        padding: 60px 0;
    }
    .page-vip-services__benefit-card,
    .page-vip-services__step-card {
        padding: 20px;
    }
    .page-vip-services__benefit-image {
        height: 180px;
    }
    .page-vip-services__privilege-item {
        gap: 20px;
        margin-bottom: 40px;
    }
    .page-vip-services__privilege-title {
        font-size: 1.5rem;
    }
    .page-vip-services__privilege-list {
        max-width: 100%;
    }
    .page-vip-services__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-vip-services__container,
    .page-vip-services__video-section,
    .page-vip-services__video-container,
    .page-vip-services__video-wrapper,
    .page-vip-services__hero-section,
    .page-vip-services__benefits-overview,
    .page-vip-services__exclusive-privileges,
    .page-vip-services__how-to-join,
    .page-vip-services__faq-section,
    .page-vip-services__cta-section {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-vip-services img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-vip-services video,
    .page-vip-services__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-vip-services__video-wrapper {
      padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
    }
    .page-vip-services__cta-buttons, .page-vip-services__button-group, .page-vip-services__btn-container {
      flex-wrap: wrap !important;
      gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-vip-services__hero-title {
        font-size: 1.8rem;
    }
    .page-vip-services__hero-description {
        font-size: 0.9rem;
    }
    .page-vip-services__section-title,
    .page-vip-services__cta-title {
        font-size: 1.5rem;
    }
    .page-vip-services__privilege-title {
        font-size: 1.3rem;
    }
    .page-vip-services__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-vip-services__faq-answer {
        padding: 10px 20px;
    }
}