/* style/resources-sodo-latest-promotions.css */

/* Base Styles & Utilities */
.page-resources-sodo-latest-promotions {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark backgrounds */
    line-height: 1.6;
    background-color: #0A2239; /* Deep blue background */
}

.page-resources-sodo-latest-promotions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-sodo-latest-promotions .section-title {
    font-size: 2.8em;
    color: #E0B44B; /* Golden for titles */
    text-align: center;
    margin-bottom: 25px;
    padding-top: 40px;
    font-weight: bold;
    position: relative;
}

.page-resources-sodo-latest-promotions .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B44B;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-resources-sodo-latest-promotions .section-description {
    font-size: 1.1em;
    color: #D0D0D0; /* Slightly lighter text for descriptions */
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-sodo-latest-promotions .highlight {
    color: #E0B44B;
    font-weight: bold;
}

.page-resources-sodo-latest-promotions .btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    font-size: 1.05em;
}

.page-resources-sodo-latest-promotions .btn-primary {
    background-color: #E0B44B; /* Golden button */
    color: #0A2239; /* Deep blue text */
    border: 2px solid #E0B44B;
}

.page-resources-sodo-latest-promotions .btn-primary:hover {
    background-color: #F0C45B;
    border-color: #F0C45B;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(224, 180, 75, 0.4);
}

.page-resources-sodo-latest-promotions .btn-secondary {
    background-color: transparent;
    color: #E0B44B; /* Golden text */
    border: 2px solid #E0B44B;
}

.page-resources-sodo-latest-promotions .btn-secondary:hover {
    background-color: #E0B44B;
    color: #0A2239;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(224, 180, 75, 0.4);
}

.page-resources-sodo-latest-promotions .btn-promo {
    background-color: #E0B44B;
    color: #0A2239;
    border: none;
    padding: 12px 25px;
    font-size: 0.95em;
    margin-top: 20px;
    display: inline-block;
}

.page-resources-sodo-latest-promotions .btn-promo:hover {
    background-color: #F0C45B;
    transform: translateY(-1px);
}

/* Hero Section */
.page-resources-sodo-latest-promotions .hero-section {
    background: linear-gradient(135deg, #0A2239, #1a3a5a);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-sodo-latest-promotions .hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
}

.page-resources-sodo-latest-promotions .hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.page-resources-sodo-latest-promotions .hero-title {
    font-size: 3.5em;
    color: #E0B44B;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-resources-sodo-latest-promotions .hero-subtitle {
    font-size: 1.4em;
    color: #F8F8F8;
    margin-bottom: 30px;
    max-width: 600px;
}

.page-resources-sodo-latest-promotions .hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-sodo-latest-promotions .hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-sodo-latest-promotions .hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Choose Sodo Section */
.page-resources-sodo-latest-promotions .why-choose-sodo-section {
    padding: 80px 0;
    background-color: #0A2239;
}

.page-resources-sodo-latest-promotions .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-resources-sodo-latest-promotions .feature-item {
    background-color: #1a3a5a; /* Slightly lighter blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-sodo-latest-promotions .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-sodo-latest-promotions .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-resources-sodo-latest-promotions .feature-item h3 {
    font-size: 1.6em;
    color: #E0B44B;
    margin-bottom: 10px;
}

.page-resources-sodo-latest-promotions .feature-item p {
    color: #D0D0D0;
    font-size: 1em;
}

/* Promotions List Section */
.page-resources-sodo-latest-promotions .promotions-list-section {
    padding: 80px 0;
    background-color: #0A2239;
}

.page-resources-sodo-latest-promotions .promo-card {
    display: flex;
    align-items: center;
    background-color: #1a3a5a;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    flex-wrap: wrap;
}

.page-resources-sodo-latest-promotions .promo-card.reverse {
    flex-direction: row-reverse;
}

.page-resources-sodo-latest-promotions .promo-card .promo-image {
    width: 40%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.page-resources-sodo-latest-promotions .promo-card.reverse .promo-image {
    order: 2;
}

.page-resources-sodo-latest-promotions .promo-card .promo-content {
    width: 60%;
    padding: 40px;
    box-sizing: border-box;
}

.page-resources-sodo-latest-promotions .promo-card h3 {
    font-size: 2em;
    color: #E0B44B;
    margin-bottom: 15px;
}

.page-resources-sodo-latest-promotions .promo-card p {
    color: #D0D0D0;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-resources-sodo-latest-promotions .promo-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-sodo-latest-promotions .promo-card ul li {
    color: #F8F8F8;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.page-resources-sodo-latest-promotions .promo-card ul li::before {
    content: '•';
    color: #E0B44B;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

/* How to Claim Section */
.page-resources-sodo-latest-promotions .how-to-claim-section {
    padding: 80px 0;
    background-color: #0A2239;
}

.page-resources-sodo-latest-promotions .steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.page-resources-sodo-latest-promotions .steps-list li {
    background-color: #1a3a5a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sodo-latest-promotions .steps-list .step-icon {
    width: 80px;
    height: 80px;
    background-color: #E0B44B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.page-resources-sodo-latest-promotions .steps-list .step-icon img {
    width: 50px;
    height: 50px;
}

.page-resources-sodo-latest-promotions .steps-list h4 {
    font-size: 1.8em;
    color: #E0B44B;
    margin-bottom: 10px;
}

.page-resources-sodo-latest-promotions .steps-list p {
    color: #D0D0D0;
    font-size: 1em;
}

.page-resources-sodo-latest-promotions .steps-list p a {
    color: #E0B44B;
    text-decoration: none;
    font-weight: bold;
}

.page-resources-sodo-latest-promotions .steps-list p a:hover {
    text-decoration: underline;
}

/* Important Notes Section */
.page-resources-sodo-latest-promotions .important-notes-section {
    padding: 80px 0;
    background-color: #0A2239; /* Ensure this matches the primary dark blue */
}

.page-resources-sodo-latest-promotions .notes-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-sodo-latest-promotions .notes-list li {
    background-color: #1a3a5a;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    color: #F8F8F8;
    font-size: 1.05em;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-resources-sodo-latest-promotions .notes-list li strong {
    color: #E0B44B;
}

.page-resources-sodo-latest-promotions .notes-list li .icon-check {
    color: #E0B44B;
    font-size: 1.4em;
    margin-right: 15px;
    flex-shrink: 0;
}

/* FAQ Section */
.page-resources-sodo-latest-promotions .faq-section {
    padding: 80px 0;
    background-color: #0A2239;
}

.page-resources-sodo-latest-promotions .faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources-sodo-latest-promotions .faq-item {
    background-color: #1a3a5a;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-sodo-latest-promotions .faq-question {
    font-size: 1.5em;
    color: #E0B44B;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-sodo-latest-promotions .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-resources-sodo-latest-promotions .faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-sodo-latest-promotions .faq-answer {
    color: #D0D0D0;
    font-size: 1.0em;
    display: none;
    margin-top: 15px;
}

.page-resources-sodo-latest-promotions .faq-answer.active {
    display: block;
}

/* Call to Action Section */
.page-resources-sodo-latest-promotions .cta-section {
    background: linear-gradient(135deg, #1a3a5a, #0A2239);
    padding: 80px 0;
    text-align: center;
}

.page-resources-sodo-latest-promotions .cta-title {
    font-size: 3em;
    color: #E0B44B;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-sodo-latest-promotions .cta-description {
    font-size: 1.2em;
    color: #F8F8F8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-resources-sodo-latest-promotions .cta-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.page-resources-sodo-latest-promotions .btn-large {
    padding: 18px 40px;
    font-size: 1.15em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-sodo-latest-promotions .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .page-resources-sodo-latest-promotions .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .page-resources-sodo-latest-promotions .hero-title {
        font-size: 2.8em;
    }

    .page-resources-sodo-latest-promotions .hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-sodo-latest-promotions .promo-card {
        flex-direction: column;
    }

    .page-resources-sodo-latest-promotions .promo-card.reverse {
        flex-direction: column;
    }

    .page-resources-sodo-latest-promotions .promo-card .promo-image,
    .page-resources-sodo-latest-promotions .promo-card .promo-content {
        width: 100%;
    }

    .page-resources-sodo-latest-promotions .promo-card.reverse .promo-image {
        order: unset;
    }

    .page-resources-sodo-latest-promotions .promo-card .promo-image {
        height: 250px;
    }

    .page-resources-sodo-latest-promotions .section-title {
        font-size: 2.2em;
    }

    .page-resources-sodo-latest-promotions .section-description {
        font-size: 1em;
    }

    .page-resources-sodo-latest-promotions .cta-title {
        font-size: 2.5em;
    }

    .page-resources-sodo-latest-promotions .cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-resources-sodo-latest-promotions .hero-title {
        font-size: 2.2em;
    }

    .page-resources-sodo-latest-promotions .hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-sodo-latest-promotions .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-sodo-latest-promotions .btn,
    .page-resources-sodo-latest-promotions .btn-large {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-resources-sodo-latest-promotions .section-title {
        font-size: 1.8em;
    }

    .page-resources-sodo-latest-promotions .promo-card h3 {
        font-size: 1.6em;
    }

    .page-resources-sodo-latest-promotions .steps-list li {
        padding: 20px;
    }

    .page-resources-sodo-latest-promotions .steps-list h4 {
        font-size: 1.5em;
    }

    .page-resources-sodo-latest-promotions .faq-question {
        font-size: 1.3em;
    }

    .page-resources-sodo-latest-promotions .cta-title {
        font-size: 2em;
    }
}