/* css/yuu-points.css */

/* ========= HERO BANNER STYLES ========= */

@media (max-width: 1023px) {
  .yuu-container {
    padding-top: 9% !important;
  }
}

@media (max-width: 624px) {
  .yuu-container {
    padding-top: 0% !important;
  }
}

.plain-content .yuu-banner-wrapper {
    width: 100%;
    margin-bottom: 48px;
}

/* Desktop/Tablet Banner */
.plain-content .yuu-banner-desktop {
    display: block;
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.plain-content .yuu-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.plain-content .yuu-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Mobile Banner - Hidden by default */
.plain-content .yuu-banner-mobile {
    display: none;
}

.plain-content .yuu-banner-img-mobile {
    width: 100%;
    height: auto;
    display: block;
}

/* ========= PAGE CONTENT STYLES ========= */

/* Page Title — centered, consistent */
.plain-content h1.font32 {
    margin: 0 0 16px;
    text-align: center;
    color: #0169AF;
    font-family: 'Inter-Bold';
}

/* Intro paragraph — larger, custom spacing */
.plain-content .intro-text {
    margin-bottom: 32px;
    color: #054F99;
    line-height: 1.7;
    font-family: 'Inter-Medium';
    text-align: center;
}

/* CTA Button Centered */
.plain-content .cta-center {
    display: flex;
    justify-content: center;
    margin: 32px 0 48px;
}

.plain-content .yuu-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Inter-Bold';
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.plain-content .yuu-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    background: linear-gradient(135deg, #FF4757 0%, #FF6B6B 100%);
}

/* Section Titles */
.plain-content .section-title {
    margin: 48px 0 8px;
    text-align: center;
    color: #0169AF;
    font-family: 'Inter-Bold';
}

.plain-content .section-subtitle {
    margin: 0 0 32px;
    text-align: center;
    color: #054F99;
    font-family: 'Inter-Medium';
    font-style: italic;
}

/* Benefits Grid */
.plain-content .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.plain-content .benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.plain-content .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(1, 105, 175, 0.15);
    border-color: #0169AF;
}

.plain-content .benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.plain-content .benefit-title {
    margin: 0 0 12px;
    color: #0169AF;
    font-family: 'Inter-Bold';
}

.plain-content .benefit-desc {
    margin: 0;
    color: #495057;
    line-height: 1.6;
    font-family: 'Inter-Regular';
}

/* Terms Note */
.plain-content .terms-note {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin: 16px 0 0;
}

/* FAQ Section */
.plain-content .faq-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid #e9ecef;
}

.plain-content .faq-header {
    margin: 0 0 12px;
    text-align: center;
    color: #0169AF;
    font-family: 'Inter-Bold';
}

.plain-content .faq-intro {
    margin: 0 0 32px;
    text-align: center;
    color: #495057;
    font-family: 'Inter-Medium';
}

/* FAQ List */
.plain-content .faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.plain-content .faq-item {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.plain-content .faq-item:hover {
    border-color: #0169AF;
    box-shadow: 0 4px 15px rgba(1, 105, 175, 0.1);
}

.plain-content .faq-question {
    margin: 0 0 16px;
    color: #0169AF;
    font-family: 'Inter-Bold';
}

.plain-content .faq-answer {
    color: #495057;
    line-height: 1.7;
    font-family: 'Inter-Regular';
}

.plain-content .faq-answer p {
    margin: 0 0 12px;
}

.plain-content .faq-answer p:last-child {
    margin-bottom: 0;
}

.plain-content .faq-answer .note-text {
    color: #6c757d;
    font-size: 14px;
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.plain-content .faq-answer .captain-tip {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #0169AF;
    margin-top: 12px;
}

/* Contact Footer */
.plain-content .contact-footer {
    margin-top: 48px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.plain-content .contact-footer a {
    color: #0169AF;
    font-family: 'Inter-Bold';
    text-decoration: none;
}

.plain-content .contact-footer a:hover {
    text-decoration: underline;
}

/* ========= RESPONSIVE DESIGN ========= */
@media (max-width: 768px) {
    /* Switch to mobile banner */
    .plain-content .yuu-banner-desktop {
        display: none;
    }
    
    .plain-content .yuu-banner-mobile {
        display: block;
    }
    
    .plain-content .yuu-banner-wrapper {
        margin-bottom: 32px;
    }
    
    /* Adjust desktop banner height for tablets */
    .plain-content .yuu-banner-desktop {
        height: 400px;
    }
    
    .plain-content .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .plain-content .yuu-cta-btn {
        padding: 14px 32px;
    }
    
    .plain-content .faq-item {
        padding: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet size - adjust banner height */
    .plain-content .yuu-banner-desktop {
        height: 400px;
    }
}