/* style/promotions-red88-holiday-specials.css */

:root {
    --red88-primary-color: #DC143C;
    --red88-secondary-color: #36454F;
    --red88-text-light: #F8F8F8;
    --red88-text-dark: #222222;
    --red88-background-light: #f4f4f4;
    --red88-accent-color: #23ebc3; /* Complementary to primary for emphasis */
    --red88-border-color: #e0e0e0;
}

.page-promotions-red88-holiday-specials {
    font-family: 'Arial', sans-serif;
    color: var(--red88-text-dark);
    line-height: 1.6;
    background-color: var(--red88-background-light);
}

.page-promotions-red88-holiday-specials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-red88-holiday-specials__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-red88-holiday-specials__section:nth-of-type(even) {
    background-color: #e9e9e9;
}

.page-promotions-red88-holiday-specials h1,
.page-promotions-red88-holiday-specials h2 {
    color: var(--red88-primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-red88-holiday-specials h1 {
    font-size: 2.8em;
    color: var(--red88-text-light); /* For hero section */
}

.page-promotions-red88-holiday-specials h2 {
    font-size: 2.2em;
    color: var(--red88-secondary-color);
}

.page-promotions-red88-holiday-specials h3 {
    font-size: 1.6em;
    color: var(--red88-primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-promotions-red88-holiday-specials p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--red88-text-dark);
}

.page-promotions-red88-holiday-specials__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-promotions-red88-holiday-specials__btn--primary {
    background-color: var(--red88-primary-color);
    color: var(--red88-text-light);
    border: 2px solid var(--red88-primary-color);
}

.page-promotions-red88-holiday-specials__btn--primary:hover {
    background-color: #a00d2a;
    transform: translateY(-2px);
}

.page-promotions-red88-holiday-specials__btn--secondary {
    background-color: transparent;
    color: var(--red88-primary-color);
    border: 2px solid var(--red88-primary-color);
}

.page-promotions-red88-holiday-specials__btn--secondary:hover {
    background-color: var(--red88-primary-color);
    color: var(--red88-text-light);
    transform: translateY(-2px);
}

.page-promotions-red88-holiday-specials__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions-red88-holiday-specials__hero {
    background: linear-gradient(135deg, var(--red88-primary-color) 0%, var(--red88-secondary-color) 100%);
    color: var(--red88-text-light);
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-red88-holiday-specials__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-promotions-red88-holiday-specials__hero-content p {
    color: var(--red88-text-light);
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-promotions-red88-holiday-specials__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    overflow: hidden;
}

.page-promotions-red88-holiday-specials__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Offers Grid */
.page-promotions-red88-holiday-specials__offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-red88-holiday-specials__offer-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-red88-holiday-specials__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-red88-holiday-specials__offer-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promotions-red88-holiday-specials__offer-card h3 {
    color: var(--red88-secondary-color);
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-red88-holiday-specials__offer-card p {
    font-size: 1em;
    color: #555;
    flex-grow: 1;
}

.page-promotions-red88-holiday-specials__offer-card .page-promotions-red88-holiday-specials__btn {
    margin-top: 20px;
    align-self: center;
}

/* Guide Steps */
.page-promotions-red88-holiday-specials__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promotions-red88-holiday-specials__steps li {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-promotions-red88-holiday-specials__steps li:hover {
    transform: translateY(-5px);
}

.page-promotions-red88-holiday-specials__steps h3 {
    color: var(--red88-primary-color);
    font-size: 1.5em;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.page-promotions-red88-holiday-specials__steps h3::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background-color: var(--red88-secondary-color);
    color: var(--red88-text-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-promotions-red88-holiday-specials__steps p {
    color: #555;
    font-size: 1em;
}

.page-promotions-red88-holiday-specials__steps .page-promotions-red88-holiday-specials__btn {
    margin-top: 20px;
}

/* Why Us Features */
.page-promotions-red88-holiday-specials__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-red88-holiday-specials__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
}

.page-promotions-red88-holiday-specials__feature-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(var(--red88-primary-color), 0.3));
}

.page-promotions-red88-holiday-specials__feature-item h3 {
    color: var(--red88-secondary-color);
    font-size: 1.3em;
    margin-top: 0;
}

.page-promotions-red88-holiday-specials__feature-item p {
    color: #666;
    font-size: 0.95em;
}

/* App Promo */
.page-promotions-red88-holiday-specials__app-promo {
    background: var(--red88-secondary-color);
    color: var(--red88-text-light);
    padding: 80px 0;
}

.page-promotions-red88-holiday-specials__app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-promotions-red88-holiday-specials__app-text {
    text-align: center;
    max-width: 700px;
}

.page-promotions-red88-holiday-specials__app-text h2 {
    color: var(--red88-text-light);
    margin-bottom: 20px;
}

.page-promotions-red88-holiday-specials__app-text p {
    color: #cccccc;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-promotions-red88-holiday-specials__app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* FAQ Accordion */
.page-promotions-red88-holiday-specials__faq {
    text-align: left;
}

.page-promotions-red88-holiday-specials__accordion {
    margin-top: 40px;
}

.page-promotions-red88-holiday-specials__accordion-item {
    border: 1px solid var(--red88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-red88-holiday-specials__accordion-header {
    background-color: var(--red88-primary-color);
    color: var(--red88-text-light);
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-red88-holiday-specials__accordion-header:hover {
    background-color: #a00d2a;
}

.page-promotions-red88-holiday-specials__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-red88-holiday-specials__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-red88-holiday-specials__accordion-content {
    padding: 0 25px;
    background-color: #fcfcfc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-red88-holiday-specials__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: var(--red88-text-dark);
}

.page-promotions-red88-holiday-specials__accordion-content.active {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px;
}

/* Final CTA */
.page-promotions-red88-holiday-specials__cta-final {
    background-color: var(--red88-secondary-color);
    color: var(--red88-text-light);
    padding: 80px 0;
}

.page-promotions-red88-holiday-specials__cta-final h2 {
    color: var(--red88-text-light);
    font-size: 2.5em;
}

.page-promotions-red88-holiday-specials__cta-final p {
    color: #cccccc;
    font-size: 1.1em;
    margin-bottom: 40px;
}

/* Floating Ad */
.page-promotions-red88-holiday-specials__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--red88-primary-color);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-red88-holiday-specials__floating-ad:hover {
    transform: scale(1.05);
}

.page-promotions-red88-holiday-specials__floating-ad a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--red88-text-light);
    font-weight: bold;
    font-size: 1em;
}

.page-promotions-red88-holiday-specials__floating-ad img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(282deg) brightness(100%) contrast(100%); /* Make icon white */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-red88-holiday-specials h1 {
        font-size: 2.2em;
    }
    .page-promotions-red88-holiday-specials h2 {
        font-size: 1.8em;
    }
    .page-promotions-red88-holiday-specials__hero {
        padding: 80px 0;
    }
    .page-promotions-red88-holiday-specials__app-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-promotions-red88-holiday-specials__section {
        padding: 40px 0;
    }
    .page-promotions-red88-holiday-specials h1 {
        font-size: 1.8em;
    }
    .page-promotions-red88-holiday-specials h2 {
        font-size: 1.6em;
    }
    .page-promotions-red88-holiday-specials h3 {
        font-size: 1.3em;
    }
    .page-promotions-red88-holiday-specials p {
        font-size: 1em;
    }
    .page-promotions-red88-holiday-specials__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-promotions-red88-holiday-specials__offer-grid,
    .page-promotions-red88-holiday-specials__steps,
    .page-promotions-red88-holiday-specials__features {
        grid-template-columns: 1fr;
    }
    .page-promotions-red88-holiday-specials__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions-red88-holiday-specials__floating-ad {
        bottom: 15px;
        right: 15px;
    }
    .page-promotions-red88-holiday-specials__floating-ad a {
        padding: 8px 15px;
        font-size: 0.9em;
    }
    .page-promotions-red88-holiday-specials__floating-ad img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .page-promotions-red88-holiday-specials__hero-content p {
        font-size: 1em;
    }
    .page-promotions-red88-holiday-specials__hero-content .page-promotions-red88-holiday-specials__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-promotions-red88-holiday-specials__floating-ad {
        bottom: 10px;
        right: 10px;
    }
    .page-promotions-red88-holiday-specials__floating-ad a {
        padding: 6px 10px;
        font-size: 0.8em;
    }
    .page-promotions-red88-holiday-specials__floating-ad img {
        width: 20px;
        height: 20px;
    }
}