/* Offers Page Specific Styles */

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #2A9D8F 0%, #264653 100%);
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 56px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.page-header p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Currency Switcher */
.currency-switcher {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    background-color: #f5f5f5;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.currency-btn {
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    padding: 12px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #666;
}

.currency-btn:first-child {
    border-right: none;
}

.currency-btn:hover {
    background-color: #e8e8e8;
}

.currency-btn.active {
    background-color: #2A9D8F;
    color: #fff;
    border-color: #2A9D8F;
}

.currency-btn .currency-symbol {
    font-size: 18px;
    font-weight: 900;
}

.currency-btn .currency-name {
    font-family: 'Archivo Black', sans-serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #fff;
    border: 3px solid #ddd;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #2A9D8F;
}

.pricing-card.featured {
    border-color: #F4A259;
    position: relative;
}

.pricing-card.featured::before {
    content: attr(data-label);
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #F4A259;
    color: #000;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .pricing-card.featured::before {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-card.featured::before {
        top: 30px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
}

.pricing-card.featured:hover {
    border-color: #F4A259;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 32px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

.price .amount {
    font-size: 64px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900;
    line-height: 1;
    color: #2A9D8F;
}

.pricing-card.featured .price .amount {
    color: #F4A259;
}

.price .period {
    font-size: 18px;
    color: #666;
    margin-top: 35px;
}

.pricing-features {
    flex: 1;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.feature i {
    color: #2A9D8F;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature.feature-highlight i {
    color: #F4A259;
}

.feature span {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.feature strong {
    font-weight: 700;
}

.feature-description {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #F4A259;
}

.feature-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 15px 30px;
    font-size: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 0.25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h4 {
    font-size: 20px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 50px;
    letter-spacing: 0.25px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-left: 4px solid #264653;
    overflow: hidden;
}

.faq-item:nth-child(even) {
    border-left-color: #264653;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question span {
    flex: 1;
    margin-right: 20px;
}

.faq-question i {
    font-size: 16px;
    color: #264653;
    transition: transform 0.3s ease;
}

.faq-item:nth-child(even) .faq-question i {
    color: #264653;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    padding: 0 30px 30px 30px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #264653;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 42px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.25px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .page-header p {
        font-size: 18px;
    }

    .pricing-card.featured::before {
        top: 20px;
        right: 20px;
    }

    /* Ensure space for the "MOST POPULAR" ribbon on tablets */
    .pricing-card.featured {
        padding-top: 60px;
    }

    .currency-switcher {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 20px 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .pricing-header h3 {
        font-size: 26px;
    }

    .price .amount {
        font-size: 48px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section h2,
    .faq-section h2 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    /* Extra space on phones so the ribbon doesn't overlap the title */
    .pricing-card.featured {
        padding-top: 80px;
    }

    .currency-switcher {
        margin-bottom: 30px;
        width: 100%;
    }

    .currency-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .currency-btn .currency-symbol {
        font-size: 16px;
    }
}


