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

.page-index-exclusive-offers {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-index-exclusive-offers__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-exclusive-offers__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-index-exclusive-offers__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-offers__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-exclusive-offers__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-index-exclusive-offers__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-index-exclusive-offers__cta-button {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-index-exclusive-offers__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 60px;
    font-weight: bold;
}

.page-index-exclusive-offers__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-index-exclusive-offers__about-offers {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

.page-index-exclusive-offers__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-index-exclusive-offers__feature-item h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-index-exclusive-offers__feature-item p {
    color: #666;
}

.page-index-exclusive-offers__offer-categories {
    padding: 60px 0;
    background-color: #e9ecef;
}

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

.page-index-exclusive-offers__category-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-index-exclusive-offers__category-card:hover {
    transform: translateY(-5px);
}

.page-index-exclusive-offers__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index-exclusive-offers__category-card h3 {
    font-size: 1.4em;
    color: #007bff;
    padding: 20px 20px 10px 20px;
    margin-bottom: 0;
}

.page-index-exclusive-offers__category-card p {
    color: #666;
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-index-exclusive-offers__card-button {
    display: block;
    text-align: center;
    background-color: #ffc107;
    color: #000;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.page-index-exclusive-offers__card-button:hover {
    background-color: #e0a800;
}

.page-index-exclusive-offers__how-to-claim {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-index-exclusive-offers__step-item {
    background-color: #f1f1f1;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.page-index-exclusive-offers__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #fff;
}

.page-index-exclusive-offers__step-item h3 {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-index-exclusive-offers__step-item p {
    color: #666;
}

.page-index-exclusive-offers__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #e9ecef;
    border-radius: 10px;
}

.page-index-exclusive-offers__cta-bottom p {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 30px;
}

.page-index-exclusive-offers__terms {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-index-exclusive-offers__terms ul {
    list-style: disc inside;
    max-width: 800px;
    margin: 30px auto;
    padding-left: 20px;
}

.page-index-exclusive-offers__terms li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1em;
}

.page-index-exclusive-offers__text-link {
    display: block;
    text-align: center;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-index-exclusive-offers__text-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-index-exclusive-offers__faq {
    padding: 60px 0;
    background-color: #fff;
}

.page-index-exclusive-offers__faq-item {
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-index-exclusive-offers__faq-item h3 {
    color: #007bff;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-index-exclusive-offers__faq-item p {
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-exclusive-offers__hero-title {
        font-size: 2.5em;
    }
    .page-index-exclusive-offers__hero-description {
        font-size: 1em;
    }
    .page-index-exclusive-offers__section-title {
        font-size: 2em;
    }
    .page-index-exclusive-offers__features-grid,
    .page-index-exclusive-offers__category-grid,
    .page-index-exclusive-offers__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-index-exclusive-offers__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-exclusive-offers__hero {
        padding: 60px 0;
    }
    .page-index-exclusive-offers__hero-content {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .page-index-exclusive-offers__hero-title {
        font-size: 2em;
    }
    .page-index-exclusive-offers__hero-description {
        font-size: 0.9em;
    }
    .page-index-exclusive-offers__section-title {
        font-size: 1.8em;
    }
    .page-index-exclusive-offers__container {
        padding: 0 15px;
    }
}