/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2463; /* Main dark blue background */
}

.page-promotions-daily-rebate .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-daily-rebate .hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1a3a7c 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero titles */
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-daily-rebate .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
    color: #FFD700; /* Gold */
}

.page-promotions-daily-rebate .hero-subtitle {
    font-size: 1.4em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-promotions-daily-rebate .section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-promotions-daily-rebate .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-promotions-daily-rebate p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #D0D0D0;
}

.page-promotions-daily-rebate strong {
    color: #FFD700;
}

.page-promotions-daily-rebate .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.page-promotions-daily-rebate .primary-btn {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate .primary-btn:hover {
    background-color: #e6c200;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate .secondary-btn {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-daily-rebate .secondary-btn:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate .introduction-section,
.page-promotions-daily-rebate .rebate-benefits-section,
.page-promotions-daily-rebate .calculation-method-section,
.page-promotions-daily-rebate .claim-time-section,
.page-promotions-daily-rebate .terms-conditions-section,
.page-promotions-daily-rebate .maximize-rebate-section,
.page-promotions-daily-rebate .faq-section {
    padding: 60px 0;
    background-color: #102B6D; /* Slightly lighter dark blue for sections */
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-promotions-daily-rebate .introduction-section {
    background-color: #0A2463;
    margin-top: -60px; /* Overlap with hero for visual flow */
    padding-top: 100px;
}

.page-promotions-daily-rebate .section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-rebate .benefits-grid,
.page-promotions-daily-rebate .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-daily-rebate .benefit-item,
.page-promotions-daily-rebate .tip-item {
    background-color: #0A2463;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions-daily-rebate .benefit-item:hover,
.page-promotions-daily-rebate .tip-item:hover {
    transform: translateY(-10px);
    background-color: #1a3a7c;
}

.page-promotions-daily-rebate .benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-daily-rebate .benefit-item h3,
.page-promotions-daily-rebate .tip-item h4 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions-daily-rebate .cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    color: #E0E0E0;
}

.page-promotions-daily-rebate .cta-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-daily-rebate .cta-text a:hover {
    text-decoration: underline;
}

.page-promotions-daily-rebate .formula-box {
    background-color: #051A4D;
    border: 2px dashed #FFD700;
    padding: 30px;
    margin: 40px auto;
    border-radius: 10px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.page-promotions-daily-rebate .formula-box p {
    font-size: 1.4em;
    font-weight: bold;
    color: #FFD700;
}

.page-promotions-daily-rebate ol,
.page-promotions-daily-rebate ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-promotions-daily-rebate ol li,
.page-promotions-daily-rebate ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #D0D0D0;
}

.page-promotions-daily-rebate ol li::before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #FFD700;
    font-size: 1.2em;
}

.page-promotions-daily-rebate ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #FFD700;
    font-size: 1.5em;
    line-height: 1;
}

.page-promotions-daily-rebate .faq-item {
    background-color: #0A2463;
    border: 1px solid #1a3a7c;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-rebate .faq-item h3 {
    background-color: #1a3a7c;
    color: #FFD700;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.3em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-daily-rebate .faq-item h3::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-daily-rebate .faq-item.active h3::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-daily-rebate .faq-item p {
    padding: 0 25px 20px 25px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #D0D0D0;
}

.page-promotions-daily-rebate .faq-item.active p {
    max-height: 200px; /* Adjust as needed */
    padding: 0 25px 20px 25px;
}

/* Floating Promo Menu */
.page-promotions-daily-rebate .floating-promo-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700;
    color: #0A2463;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    max-width: 350px;
    transition: transform 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

.page-promotions-daily-rebate .floating-promo-menu.hidden {
    transform: translateX(calc(100% + 20px));
}

.page-promotions-daily-rebate .floating-promo-menu .promo-content {
    flex-grow: 1;
}

.page-promotions-daily-rebate .floating-promo-menu .promo-text {
    margin: 0;
    font-size: 1em;
    font-weight: bold;
    color: #0A2463;
    line-height: 1.4;
}

.page-promotions-daily-rebate .floating-promo-menu .promo-btn {
    background-color: #0A2463;
    color: #FFD700;
    border: none;
    padding: 10px 15px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.page-promotions-daily-rebate .floating-promo-menu .promo-btn:hover {
    background-color: #1a3a7c;
}

.page-promotions-daily-rebate .close-promo-btn {
    background: none;
    border: none;
    color: #0A2463;
    font-size: 1.8em;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.page-promotions-daily-rebate .close-promo-btn:hover {
    color: #1a3a7c;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-daily-rebate .hero-title {
        font-size: 2.8em;
    }
    .page-promotions-daily-rebate .hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions-daily-rebate .section-title {
        font-size: 2em;
    }
    .page-promotions-daily-rebate .benefits-grid,
    .page-promotions-daily-rebate .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions-daily-rebate .hero-section {
        padding: 80px 0;
    }
    .page-promotions-daily-rebate .hero-title {
        font-size: 2.2em;
    }
    .page-promotions-daily-rebate .hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-daily-rebate .section-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate p,
    .page-promotions-daily-rebate ol li,
    .page-promotions-daily-rebate ul li {
        font-size: 1em;
    }
    .page-promotions-daily-rebate .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-daily-rebate .floating-promo-menu {
        flex-direction: column;
        align-items: flex-start;
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }
    .page-promotions-daily-rebate .floating-promo-menu .promo-btn {
        width: 100%;
        margin-top: 10px;
    }
    .page-promotions-daily-rebate .close-promo-btn {
        position: absolute;
        top: 5px;
        right: 5px;
    }
}

@media (max-width: 480px) {
    .page-promotions-daily-rebate .hero-title {
        font-size: 1.8em;
    }
    .page-promotions-daily-rebate .section-title {
        font-size: 1.5em;
    }
    .page-promotions-daily-rebate .formula-box p {
        font-size: 1.1em;
    }
}