/* style/khuyn-mi-daily-weekly-rebate.css */

:root {
    --primary-color: #CC0000;
    --secondary-color: #FFD700;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f8f8;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-light-grey: #cccccc;
    --border-color: #e0e0e0;
}

.page-khuyn-mi-daily-weekly-rebate {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

.page-khuyn-mi-daily-weekly-rebate a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-khuyn-mi-daily-weekly-rebate a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.page-khuyn-mi-daily-weekly-rebate .section-spacing {
    padding: 60px 0;
}

.page-khuyn-mi-daily-weekly-rebate .bg-dark {
    background-color: var(--dark-bg);
}

.page-khuyn-mi-daily-weekly-rebate .text-white {
    color: var(--text-light);
}

.page-khuyn-mi-daily-weekly-rebate .text-light-grey {
    color: var(--text-light-grey);
}

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

.page-khuyn-mi-daily-weekly-rebate h1, .page-khuyn-mi-daily-weekly-rebate h2, .page-khuyn-mi-daily-weekly-rebate h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-khuyn-mi-daily-weekly-rebate h1 {
    font-size: 3em;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-khuyn-mi-daily-weekly-rebate h2 {
    font-size: 2.5em;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-khuyn-mi-daily-weekly-rebate h3 {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-khuyn-mi-daily-weekly-rebate p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-khuyn-mi-daily-weekly-rebate ul {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-khuyn-mi-daily-weekly-rebate ol {
    list-style: decimal inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-khuyn-mi-daily-weekly-rebate li {
    margin-bottom: 8px;
}

/* Hero Section */
.page-khuyn-mi-daily-weekly-rebate-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
    min-height: 500px;
}

.page-khuyn-mi-daily-weekly-rebate-hero .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-khuyn-mi-daily-weekly-rebate-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
}

.page-khuyn-mi-daily-weekly-rebate-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.4);
}

.page-khuyn-mi-daily-weekly-rebate-hero .hero-content p {
    color: var(--text-light);
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-khuyn-mi-daily-weekly-rebate .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-khuyn-mi-daily-weekly-rebate .cta-button:hover {
    background: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.page-khuyn-mi-daily-weekly-rebate .big-cta {
    font-size: 1.5em;
    padding: 20px 50px;
}

/* Benefits Grid */
.page-khuyn-mi-daily-weekly-rebate .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-khuyn-mi-daily-weekly-rebate .benefit-item {
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-khuyn-mi-daily-weekly-rebate .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.page-khuyn-mi-daily-weekly-rebate .benefit-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-khuyn-mi-daily-weekly-rebate .benefit-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Type Columns */
.page-khuyn-mi-daily-weekly-rebate .type-columns {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-khuyn-mi-daily-weekly-rebate .type-column {
    flex: 1;
    min-width: 300px;
    background-color: #333;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: var(--text-light);
}

.page-khuyn-mi-daily-weekly-rebate .type-column h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
}

.page-khuyn-mi-daily-weekly-rebate .type-column ul {
    list-style: none;
    padding-left: 0;
}

.page-khuyn-mi-daily-weekly-rebate .type-column li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-khuyn-mi-daily-weekly-rebate .type-column li::before {
    content: '✓';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-khuyn-mi-daily-weekly-rebate .column-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Tier Table */
.page-khuyn-mi-daily-weekly-rebate .tier-table {
    margin-top: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-khuyn-mi-daily-weekly-rebate .table-header, .page-khuyn-mi-daily-weekly-rebate .table-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-khuyn-mi-daily-weekly-rebate .table-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
}

.page-khuyn-mi-daily-weekly-rebate .table-row {
    background-color: #333;
    color: var(--text-light-grey);
}

.page-khuyn-mi-daily-weekly-rebate .table-row:nth-child(even) {
    background-color: #2a2a2a;
}

.page-khuyn-mi-daily-weekly-rebate .col {
    padding: 15px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.page-khuyn-mi-daily-weekly-rebate .col:last-child {
    border-right: none;
}

/* Why Us Grid */
.page-khuyn-mi-daily-weekly-rebate .why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-khuyn-mi-daily-weekly-rebate .why-us-item {
    background-color: #333;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: var(--text-light-grey);
}

.page-khuyn-mi-daily-weekly-rebate .why-us-item h3 {
    color: var(--secondary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-khuyn-mi-daily-weekly-rebate .why-us-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* FAQ Section */
.page-khuyn-mi-daily-weekly-rebate .faq-list {
    margin-top: 40px;
}

.page-khuyn-mi-daily-weekly-rebate .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--text-light);
}

.page-khuyn-mi-daily-weekly-rebate .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--text-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-khuyn-mi-daily-weekly-rebate .faq-question:hover {
    background: #f0f0f0;
}

.page-khuyn-mi-daily-weekly-rebate .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-dark);
    text-align: left;
}

.page-khuyn-mi-daily-weekly-rebate .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-khuyn-mi-daily-weekly-rebate .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.page-khuyn-mi-daily-weekly-rebate .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.page-khuyn-mi-daily-weekly-rebate .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 15px 25px;
}

.page-khuyn-mi-daily-weekly-rebate-cta-bottom {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
    margin-top: 60px;
}

.page-khuyn-mi-daily-weekly-rebate-cta-bottom h2 {
    color: var(--text-light);
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-khuyn-mi-daily-weekly-rebate-cta-bottom p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-khuyn-mi-daily-weekly-rebate h1 {
        font-size: 2.5em;
    }
    .page-khuyn-mi-daily-weekly-rebate h2 {
        font-size: 2em;
    }
    .page-khuyn-mi-daily-weekly-rebate .tier-table {
        overflow-x: auto;
    }
    .page-khuyn-mi-daily-weekly-rebate .table-header, .page-khuyn-mi-daily-weekly-rebate .table-row {
        grid-template-columns: repeat(5, minmax(100px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-khuyn-mi-daily-weekly-rebate-hero {
        padding: 60px 15px;
        min-height: 400px;
    }
    .page-khuyn-mi-daily-weekly-rebate-hero .hero-content {
        padding: 15px;
    }
    .page-khuyn-mi-daily-weekly-rebate h1 {
        font-size: 2em;
    }
    .page-khuyn-mi-daily-weekly-rebate h2 {
        font-size: 1.8em;
    }
    .page-khuyn-mi-daily-weekly-rebate h3 {
        font-size: 1.4em;
    }
    .page-khuyn-mi-daily-weekly-rebate .section-spacing {
        padding: 40px 0;
    }
    .page-khuyn-mi-daily-weekly-rebate .benefits-grid, .page-khuyn-mi-daily-weekly-rebate .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    .page-khuyn-mi-daily-weekly-rebate .type-columns {
        flex-direction: column;
        gap: 20px;
    }
    .page-khuyn-mi-daily-weekly-rebate .type-column {
        padding: 20px;
    }
    .page-khuyn-mi-daily-weekly-rebate .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-khuyn-mi-daily-weekly-rebate .big-cta {
        font-size: 1.2em;
        padding: 15px 40px;
    }
    .page-khuyn-mi-daily-weekly-rebate .faq-question {
        padding: 15px 20px;
    }
    .page-khuyn-mi-daily-weekly-rebate .faq-question h3 {
        font-size: 1.1em;
    }
    .page-khuyn-mi-daily-weekly-rebate .faq-answer {
        padding: 0 20px;
    }
    .page-khuyn-mi-daily-weekly-rebate .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-khuyn-mi-daily-weekly-rebate-cta-bottom {
        padding: 60px 15px;
    }
    .page-khuyn-mi-daily-weekly-rebate-cta-bottom h2 {
        font-size: 2em;
    }
    .page-khuyn-mi-daily-weekly-rebate-cta-bottom p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-khuyn-mi-daily-weekly-rebate h1 {
        font-size: 1.8em;
    }
    .page-khuyn-mi-daily-weekly-rebate h2 {
        font-size: 1.5em;
    }
    .page-khuyn-mi-daily-weekly-rebate .hero-content p {
        font-size: 1em;
    }
    .page-khuyn-mi-daily-weekly-rebate .benefits-grid, .page-khuyn-mi-daily-weekly-rebate .why-us-grid {
        grid-template-columns: 1fr;
    }
    .page-khuyn-mi-daily-weekly-rebate .col {
        padding: 10px 5px;
        font-size: 0.85em;
    }
}