/* style/promotions-holiday-special-offers.css */

/* Base styles for the page content wrapper */
.page-promotions-holiday-special-offers {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #1A1A1A; /* Very dark background for contrast */
}

/* Container for consistent content width */
.page-promotions-holiday-special-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section styling */
.page-promotions-holiday-special-offers__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-holiday-special-offers__section:nth-of-type(even) {
    background-color: #2C3E50; /* Dark blue background for alternating sections */
    color: #FFFFFF; /* White text on dark blue */
}

.page-promotions-holiday-special-offers__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.page-promotions-holiday-special-offers__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #CCCCCC; /* Lighter gray for descriptions */
}

/* Hero Section */
.page-promotions-holiday-special-offers__hero {
    background: linear-gradient(135deg, #2C3E50, #1A1A1A); /* Dark blue to very dark gradient */
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-promotions-holiday-special-offers__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]'); /* Subtle background pattern */
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-holiday-special-offers__hero > .page-promotions-holiday-special-offers__container {
    position: relative;
    z-index: 1;
}

.page-promotions-holiday-special-offers__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-promotions-holiday-special-offers__hero-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.5;
    color: #E0E0E0;
}

.page-promotions-holiday-special-offers__hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-promotions-holiday-special-offers__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions-holiday-special-offers__btn--primary {
    background-color: #FFD700;
    color: #2C3E50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-holiday-special-offers__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-holiday-special-offers__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-holiday-special-offers__btn--secondary:hover {
    background-color: #FFD700;
    color: #2C3E50;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-promotions-holiday-special-offers__btn--small {
    padding: 10px 25px;
    font-size: 0.95em;
    border-radius: 6px;
    margin-top: 20px;
}

.page-promotions-holiday-special-offers__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Offers Grid */
.page-promotions-holiday-special-offers__offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-holiday-special-offers__offer-card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3A3A3A;
    display: flex;
    flex-direction: column;
}

.page-promotions-holiday-special-offers__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-special-offers__offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-special-offers__offer-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-holiday-special-offers__offer-text {
    font-size: 0.95em;
    color: #C0C0C0;
    flex-grow: 1; /* Allows text to take available space */
    margin-bottom: 20px;
}

/* How-To Section */
.page-promotions-holiday-special-offers__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-holiday-special-offers__step-card {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #3A3A3A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-holiday-special-offers__step-icon {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1;
}
/* Placeholder for icons, if actual icons are used, use them directly */
.page-promotions-holiday-special-offers__step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}


.page-promotions-holiday-special-offers__step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-holiday-special-offers__step-text {
    font-size: 0.95em;
    color: #C0C0C0;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Terms and Conditions */
.page-promotions-holiday-special-offers__section--tcs {
    background-color: #1A1A1A; /* Darker background for T&C */
    color: #E0E0E0;
}

.page-promotions-holiday-special-offers__tcs-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
}

.page-promotions-holiday-special-offers__tcs-list li {
    background-color: #2C3E50;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FFD700;
    color: #FFFFFF;
}

.page-promotions-holiday-special-offers__tcs-list li strong {
    color: #FFD700;
    font-size: 1.1em;
}

.page-promotions-holiday-special-offers__tcs-list li p {
    margin: 5px 0 0;
    color: #E0E0E0;
}

.page-promotions-holiday-special-offers__section-note {
    font-style: italic;
    color: #AAAAAA;
    margin-top: 30px;
}

/* Why Choose Section */
.page-promotions-holiday-special-offers__section--why-choose {
    background-color: #2C3E50; /* Dark blue background */
    color: #FFFFFF;
}

.page-promotions-holiday-special-offers__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions-holiday-special-offers__feature-item {
    background-color: #1A1A1A;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #3A3A3A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-holiday-special-offers__feature-icon {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1;
}
.page-promotions-holiday-special-offers__feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.page-promotions-holiday-special-offers__feature-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-holiday-special-offers__feature-text {
    font-size: 0.95em;
    color: #C0C0C0;
    flex-grow: 1;
    margin-bottom: 20px;
}