:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A1A; /* Dark Gray */
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --background-dark: #121212;
    --card-background-light: #ffffff;
    --border-color: #e0e0e0;
}

/* Base styles for the contact-us page */
.page-contact-us {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-light); /* Dark body background requires light text */
    background-color: var(--background-dark);
    padding-top: 120px; /* Adjust for fixed header on desktop */
}

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

.page-contact-us h1, .page-contact-us h2, .page-contact-us h3, .page-contact-us h4, .page-contact-us h5, .page-contact-us h6 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact-us h1 {
    font-size: 42px;
    text-align: center;
}

.page-contact-us h2 {
    font-size: 36px;
    text-align: center;
}

.page-contact-us h3 {
    font-size: 24px;
}

.page-contact-us p {
    margin-bottom: 15px;
    color: var(--text-color-light);
}

.page-contact-us a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact-us a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Buttons */
.page-contact-us__cta-button,
.page-contact-us__play-now-button,
.page-contact-us__btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    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.2);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
}

.page-contact-us__cta-button:hover,
.page-contact-us__play-now-button:hover,
.page-contact-us__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Video Section */
.page-contact-us__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 header */
}

.page-contact-us__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-us__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-us__video-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-contact-us__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-contact-us__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 on parent <a> */
}

.page-contact-us__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.4);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

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

.page-contact-us__video-click-hint {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    background: rgba(0, 123, 255, 0.8);
    border-radius: 5px;
    white-space: nowrap;
}

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

/* Title Section */
.page-contact-us__title-section {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--background-dark);
}

.page-contact-us__main-title {
    color: var(--primary-color);
    font-size: 3.2em;
    margin-bottom: 20px;
}

.page-contact-us__title-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--text-color-light);
}

.page-contact-us__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Info Section */
.page-contact-us__contact-info-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color-light);
}

.page-contact-us__contact-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-contact-us__contact-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-color-light);
}

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

.page-contact-us__contact-card {
    background: var(--card-background-light);
    color: var(--text-color-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-us__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact-us__contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter is applied */
}

.page-contact-us__contact-card-title {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-contact-us__contact-card-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-contact-us__contact-link {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact-us__contact-link:hover {
    background-color: #e6c200;
    color: var(--secondary-color);
    text-decoration: none;
}

.page-contact-us__contact-address {
    font-style: normal;
    color: #555;
    margin-top: 10px;
}

/* FAQ Section */
.page-contact-us__faq-section {
    padding: 80px 20px;
    background-color: var(--background-dark);
}

.page-contact-us__faq-main-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-contact-us__faq-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-color-light);
}

.page-contact-us__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-contact-us__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--card-background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact-us__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 20px;
    opacity: 0;
    color: var(--text-color-dark);
}

.page-contact-us__faq-item.active .page-contact-us__faq-answer {
    max-height: 2000px !important; /* Ensure enough height for content */
    padding: 20px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-contact-us__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--card-background-light);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-contact-us__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-contact-us__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--secondary-color);
    pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-contact-us__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    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-contact-us__faq-item.active .page-contact-us__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg); /* Optional: rotate for 'x' effect */
}

/* Brand Section */
.page-contact-us__brand-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color-light);
}

.page-contact-us__brand-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-contact-us__brand-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-color-light);
}

.page-contact-us__brand-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact-us__brand-item {
    background: var(--card-background-light);
    color: var(--text-color-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-us__brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact-us__brand-item-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 5px;
    filter: none; /* Ensure no CSS filter is applied */
}

.page-contact-us__brand-item-title {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-contact-us__brand-item-text {
    font-size: 1em;
    color: #555;
}

/* Blog Section */
.page-contact-us__blog-section {
    padding: 80px 20px;
    background-color: var(--background-dark);
}

.page-contact-us__blog-title {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-contact-us__blog-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-color-light);
}

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

.page-contact-us__blog-item {
    background: var(--card-background-light);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-us__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact-us__blog-link {
    display: block;
    padding: 20px;
    color: var(--text-color-dark);
    text-decoration: none;
}

.page-contact-us__blog-link:hover {
    text-decoration: none;
}

.page-contact-us__blog-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    filter: none; /* Ensure no CSS filter is applied */
}

.page-contact-us__blog-item-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-contact-us__blog-item-excerpt {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.page-contact-us__blog-item-date {
    font-size: 0.85em;
    color: #888;
    display: block;
    text-align: right;
}

.page-contact-us__view-all-blogs {
    text-align: center;
    margin-top: 50px;
}

/* General dark background text color fix */
.page-contact-us__dark-section h3,
.page-contact-us__dark-section p {
    color: var(--text-color-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact-us h1 {
        font-size: 3.5em;
    }
    .page-contact-us h2 {
        font-size: 2.8em;
    }
    .page-contact-us__main-title {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .page-contact-us {
        padding-top: 100px; /* Adjust for fixed header on mobile */
        font-size: 16px;
        line-height: 1.6;
    }
    
    .page-contact-us__container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-contact-us h1 {
        font-size: 2.5em;
    }
    .page-contact-us h2 {
        font-size: 2.2em;
    }
    .page-contact-us h3 {
        font-size: 1.3em;
    }
    .page-contact-us__main-title {
        font-size: 2.5em;
    }

    /* Video Section Mobile */
    .page-contact-us__video-section {
        padding-top: 10px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .page-contact-us__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }
    
    .page-contact-us__video-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-contact-us__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 4px;
        overflow: hidden !important;
    }
    
    .page-contact-us__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 4px;
        object-fit: contain;
    }
    
    .page-contact-us__video-cta {
        margin-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .page-contact-us__play-now-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 30px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-contact-us__video-click-hint {
        font-size: 14px !important;
        padding: 8px 16px !important;
    }

    /* CTA Buttons Mobile */
    .page-contact-us__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-contact-us__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }

    /* Contact Info Section Mobile */
    .page-contact-us__contact-info-section,
    .page-contact-us__faq-section,
    .page-contact-us__brand-section,
    .page-contact-us__blog-section {
        padding: 40px 15px;
    }

    .page-contact-us__contact-grid,
    .page-contact-us__brand-content,
    .page-contact-us__blog-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-contact-us__contact-icon {
        width: 60px;
        height: 60px;
    }
    
    /* FAQ Mobile */
    .page-contact-us__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-contact-us__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-contact-us__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-contact-us__faq-answer {
        padding: 0 15px;
    }
    
    .page-contact-us__faq-item.active .page-contact-us__faq-answer {
        padding: 15px !important;
    }

    /* Images Mobile */
    .page-contact-us img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-contact-us__brand-item-image,
    .page-contact-us__blog-item-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    .page-contact-us__blog-item-image {
        height: 180px;
    }

    /* Ensure all containers are responsive */
    .page-contact-us__title-section,
    .page-contact-us__contact-info-section,
    .page-contact-us__faq-section,
    .page-contact-us__brand-section,
    .page-contact-us__blog-section,
    .page-contact-us__cta-buttons,
    .page-contact-us__contact-grid,
    .page-contact-us__brand-content,
    .page-contact-us__blog-list,
    .page-contact-us__view-all-blogs {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

/* Contrast Fixes */
.page-contact-us__dark-bg {
  color: var(--text-color-light); /* Deep dark backgrounds with light text */
}

.page-contact-us__light-bg {
  color: var(--text-color-dark); /* Light backgrounds with dark text */
}

/* Ensure text in dark sections (like brand and contact info) is light */
.page-contact-us__dark-section h2, .page-contact-us__dark-section h3, .page-contact-us__dark-section p {
    color: var(--text-color-light);
}

/* Override specific elements in light background cards to ensure dark text */
.page-contact-us__contact-card h3,
.page-contact-us__contact-card p,
.page-contact-us__contact-address,
.page-contact-us__brand-item h3,
.page-contact-us__brand-item p,
.page-contact-us__faq-item h3,
.page-contact-us__faq-item p,
.page-contact-us__blog-item-title,
.page-contact-us__blog-item-excerpt,
.page-contact-us__blog-item-date {
    color: var(--text-color-dark);
}

/* Specific links in light cards should use primary color for contrast */
.page-contact-us__contact-link {
    color: var(--secondary-color);
}
.page-contact-us__contact-link:hover {
    color: var(--secondary-color);
}