/* style/index-exclusive-offers-preview.css */

/* Biến CSS */
:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f4f7f6;
    --background-dark: #002244;
    --border-color: #e0e0e0;
}

.page-index-exclusive-offers-preview {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.page-index-exclusive-offers-preview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-exclusive-offers-preview__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004d99 100%);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.page-index-exclusive-offers-preview__hero-content {
    flex: 1;
    padding-left: 50px;
    z-index: 1;
}

.page-index-exclusive-offers-preview__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: bold;
}

.page-index-exclusive-offers-preview__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
}

.page-index-exclusive-offers-preview__cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-exclusive-offers-preview__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-index-exclusive-offers-preview__button--primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-index-exclusive-offers-preview__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-exclusive-offers-preview__button--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-index-exclusive-offers-preview__button--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-index-exclusive-offers-preview__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 50px;
}

.page-index-exclusive-offers-preview__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers-preview__section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-index-exclusive-offers-preview__section:nth-of-type(even) {
    background-color: #ffffff;
}

.page-index-exclusive-offers-preview__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-exclusive-offers-preview__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: justify;
}

.page-index-exclusive-offers-preview__section-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-exclusive-offers-preview__offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-exclusive-offers-preview__offer-list li {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-exclusive-offers-preview__offer-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-exclusive-offers-preview__offer-list h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-index-exclusive-offers-preview__steps-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-index-exclusive-offers-preview__steps-list li {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-index-exclusive-offers-preview__steps-list strong {
    color: var(--primary-color);
}

.page-index-exclusive-offers-preview__button--inline {
    margin-left: 15px;
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

.page-index-exclusive-offers-preview__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-index-exclusive-offers-preview__feature-item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-index-exclusive-offers-preview__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-exclusive-offers-preview__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-index-exclusive-offers-preview__feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-index-exclusive-offers-preview__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-index-exclusive-offers-preview__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

.page-index-exclusive-offers-preview__faq {
    background-color: var(--background-light);
}

.page-index-exclusive-offers-preview__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-exclusive-offers-preview__accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.page-index-exclusive-offers-preview__accordion-header:hover {
    background-color: #004488;
}

.page-index-exclusive-offers-preview__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-index-exclusive-offers-preview__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-exclusive-offers-preview__accordion-body {
    padding: 0 25px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-exclusive-offers-preview__accordion-body.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px 25px;
}

.page-index-exclusive-offers-preview__accordion-body p {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-index-exclusive-offers-preview__contact-cta {
    text-align: center;
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-index-exclusive-offers-preview__contact-cta .page-index-exclusive-offers-preview__section-title {
    color: var(--secondary-color);
}

.page-index-exclusive-offers-preview__contact-cta .page-index-exclusive-offers-preview__text-block {
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-exclusive-offers-preview__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }
    .page-index-exclusive-offers-preview__hero-content {
        padding: 0 20px;
    }
    .page-index-exclusive-offers-preview__hero-image-wrapper {
        padding: 0 20px;
        margin-top: 40px;
    }
    .page-index-exclusive-offers-preview__title {
        font-size: 2.8em;
    }
    .page-index-exclusive-offers-preview__subtitle {
        font-size: 1.1em;
    }
    .page-index-exclusive-offers-preview__section-title {
        font-size: 2em;
    }
    .page-index-exclusive-offers-preview__offer-list {
        grid-template-columns: 1fr;
    }
    .page-index-exclusive-offers-preview__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-exclusive-offers-preview__hero {
        padding: 40px 0;
    }
    .page-index-exclusive-offers-preview__title {
        font-size: 2.2em;
    }
    .page-index-exclusive-offers-preview__subtitle {
        font-size: 1em;
    }
    .page-index-exclusive-offers-preview__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-exclusive-offers-preview__section {
        padding: 40px 0;
    }
    .page-index-exclusive-offers-preview__section-title {
        font-size: 1.8em;
    }
    .page-index-exclusive-offers-preview__text-block, .page-index-exclusive-offers-preview__offer-list li p, .page-index-exclusive-offers-preview__steps-list li {
        font-size: 0.95em;
    }
    .page-index-exclusive-offers-preview__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-exclusive-offers-preview__cta-group {
        flex-direction: column;
        align-items: center;
    }
    .page-index-exclusive-offers-preview__button {
        width: 100%;
        max-width: 280px;
    }
    .page-index-exclusive-offers-preview__button--inline {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
    .page-index-exclusive-offers-preview__hero-content, .page-index-exclusive-offers-preview__hero-image-wrapper {
        padding: 0 15px;
    }
    .page-index-exclusive-offers-preview__container {
        padding: 0 15px;
    }
    .page-index-exclusive-offers-preview__title {
        font-size: 1.8em;
    }
    .page-index-exclusive-offers-preview__subtitle {
        font-size: 0.9em;
    }
    .page-index-exclusive-offers-preview__section-title {
        font-size: 1.5em;
    }
    .page-index-exclusive-offers-preview__feature-icon {
        width: 50px;
        height: 50px;
    }
    .page-index-exclusive-offers-preview__accordion-header {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-index-exclusive-offers-preview__accordion-body.active {
        padding: 15px;
    }
}