/* style/promotions-limited-time-offers.css */

:root {
    --jbo-primary-color: #1A2B4C;
    --jbo-secondary-color: #FF8C00;
    --text-light: #FFFFFF;
    --text-dark: #333333;
    --background-light: #F8F8F8;
    --background-dark: #111111;
    --border-color: #e0e0e0;
}

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

.page-promotions-limited-time-offers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-limited-time-offers .hero-section {
    background: linear-gradient(135deg, var(--jbo-primary-color) 0%, #3a4b6c 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-limited-time-offers .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-limited-time-offers .hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-promotions-limited-time-offers .section-title {
    font-size: 2.5em;
    color: var(--jbo-primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-promotions-limited-time-offers .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--jbo-secondary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-promotions-limited-time-offers .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px auto;
    color: var(--text-dark);
}

.page-promotions-limited-time-offers .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions-limited-time-offers .btn-primary {
    background-color: var(--jbo-secondary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.page-promotions-limited-time-offers .btn-primary:hover {
    background-color: #e67e00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.page-promotions-limited-time-offers .btn-secondary {
    background-color: var(--jbo-primary-color);
    color: var(--jbo-secondary-color);
    border: 2px solid var(--jbo-secondary-color);
    margin-left: 20px;
}

.page-promotions-limited-time-offers .btn-secondary:hover {
    background-color: var(--jbo-secondary-color);
    color: var(--jbo-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.page-promotions-limited-time-offers .btn-sm {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 30px;
}

.page-promotions-limited-time-offers .btn-lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-promotions-limited-time-offers .content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.page-promotions-limited-time-offers .content-grid.reverse-grid {
    flex-direction: row-reverse;
}

.page-promotions-limited-time-offers .content-grid .text-content {
    flex: 1;
}

.page-promotions-limited-time-offers .content-grid .text-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-promotions-limited-time-offers .content-grid .image-content {
    flex: 1;
    text-align: center;
}

.page-promotions-limited-time-offers .content-grid .section-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-limited-time-offers .offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.page-promotions-limited-time-offers .offer-card {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-limited-time-offers .offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-limited-time-offers .offer-card .card-image {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-promotions-limited-time-offers .offer-card .card-title {
    font-size: 1.5em;
    color: var(--jbo-primary-color);
    margin-bottom: 15px;
}

.page-promotions-limited-time-offers .offer-card .card-text {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
}

.page-promotions-limited-time-offers .how-to-claim-section .claim-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-bottom: 60px;
}

.page-promotions-limited-time-offers .how-to-claim-section .claim-steps li {
    background-color: var(--text-light);
    border-left: 5px solid var(--jbo-secondary-color);
    margin-bottom: 25px;
    padding: 25px 30px 25px 70px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-limited-time-offers .how-to-claim-section .claim-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--jbo-secondary-color);
    color: var(--text-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-promotions-limited-time-offers .how-to-claim-section .claim-steps li h3 {
    font-size: 1.3em;
    color: var(--jbo-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-limited-time-offers .how-to-claim-section .claim-steps li p {
    font-size: 1em;
    color: #555;
}

.page-promotions-limited-time-offers .how-to-claim-section .claim-steps li a {
    color: var(--jbo-secondary-color);
    text-decoration: underline;
}

.page-promotions-limited-time-offers .how-to-claim-section .claim-steps li a:hover {
    color: var(--jbo-primary-color);
}

.page-promotions-limited-time-offers .cta-group {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-limited-time-offers .why-jbo-section {
    background-color: var(--jbo-primary-color);
    color: var(--text-light);
    padding: 80px 0;
}

.page-promotions-limited-time-offers .why-jbo-section .section-title {
    color: var(--text-light);
}

.page-promotions-limited-time-offers .why-jbo-section .section-title::after {
    background-color: var(--jbo-secondary-color);
}

.page-promotions-limited-time-offers .why-jbo-section .section-description {
    color: #e0e0e0;
    margin-bottom: 60px;
}

.page-promotions-limited-time-offers .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.page-promotions-limited-time-offers .feature-item {
    background-color: #2a3d5e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers .feature-item:hover {
    transform: translateY(-5px);
}

.page-promotions-limited-time-offers .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-promotions-limited-time-offers .feature-item h3 {
    font-size: 1.4em;
    color: var(--jbo-secondary-color);
    margin-bottom: 10px;
}

.page-promotions-limited-time-offers .feature-item p {
    font-size: 0.95em;
    color: #cccccc;
}

.page-promotions-limited-time-offers .mobile-app-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-promotions-limited-time-offers .final-cta-section {
    background: linear-gradient(135deg, var(--jbo-secondary-color) 0%, #e67e00 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.page-promotions-limited-time-offers .final-cta-section .section-title {
    color: var(--text-light);
}

.page-promotions-limited-time-offers .final-cta-section .section-title::after {
    background-color: var(--text-light);
}

.page-promotions-limited-time-offers .final-cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

/* Floating Promo (within main content scope) */
.page-promotions-limited-time-offers-floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--jbo-secondary-color);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    transition: transform 0.3s ease;
}

.page-promotions-limited-time-offers-floating-promo:hover {
    transform: translateY(-5px);
}

.page-promotions-limited-time-offers-floating-promo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-weight: bold;
}

.page-promotions-limited-time-offers-floating-promo img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.page-promotions-limited-time-offers-floating-promo span {
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-limited-time-offers .hero-title {
        font-size: 2.8em;
    }
    .page-promotions-limited-time-offers .section-title {
        font-size: 2em;
    }
    .page-promotions-limited-time-offers .content-grid {
        flex-direction: column;
    }
    .page-promotions-limited-time-offers .content-grid.reverse-grid {
        flex-direction: column;
    }
    .page-promotions-limited-time-offers .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions-limited-time-offers .cta-group .btn {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-promotions-limited-time-offers .hero-title {
        font-size: 2.2em;
    }
    .page-promotions-limited-time-offers .hero-section {
        padding: 80px 0;
    }
    .page-promotions-limited-time-offers .section-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-offers .section-description {
        font-size: 1em;
    }
    .page-promotions-limited-time-offers .offer-card {
        padding: 20px;
    }
    .page-promotions-limited-time-offers .offer-card .card-title {
        font-size: 1.3em;
    }
    .page-promotions-limited-time-offers .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-limited-time-offers .page-promotions-limited-time-offers-floating-promo {
        bottom: 10px;
        right: 10px;
        padding: 8px 15px;
    }
    .page-promotions-limited-time-offers-floating-promo img {
        width: 25px;
        height: 25px;
    }
    .page-promotions-limited-time-offers-floating-promo span {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-promotions-limited-time-offers .hero-title {
        font-size: 1.8em;
    }
    .page-promotions-limited-time-offers .hero-description {
        font-size: 0.95em;
    }
    .page-promotions-limited-time-offers .section-title {
        font-size: 1.6em;
    }
    .page-promotions-limited-time-offers .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    .page-promotions-limited-time-offers .btn-secondary {
        margin-top: 0;
    }
    .page-promotions-limited-time-offers .cta-group {
        flex-direction: column;
    }
    .page-promotions-limited-time-offers .cta-group .btn {
        margin-left: 0;
    }
    .page-promotions-limited-time-offers .how-to-claim-section .claim-steps li {
        padding: 20px 20px 20px 60px;
    }
    .page-promotions-limited-time-offers .how-to-claim-section .claim-steps li::before {
        left: 15px;
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
    .page-promotions-limited-time-offers-floating-promo {
        left: 10px;
        right: 10px;
        width: auto;
        justify-content: center;
    }
}