/* Moving Page Styles */

/* Hero Section */
.moving-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

.moving-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.moving-hero h1 .italic {
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 30px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Move Options Section */
.move-options {
    padding: 80px 0;
    background: #fff;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.option-card {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.option-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.option-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.btn-outline {
    background: transparent;
    color: #0078d7;
    border: 2px solid #0078d7;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0078d7;
    color: #fff;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    max-width: 100%;
    max-height: 100%;
}

.icon-fallback {
    font-size: 60px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.disclaimer {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 40px 0;
}

.disclaimer p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Stay Connected Section */
.stay-connected {
    padding: 80px 0;
    background: #fff;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.section-heading .italic {
    font-style: italic;
    font-weight: 300;
}

.connected-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.connected-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 20px;
}

.connected-card.reverse {
    direction: rtl;
}

.connected-card.reverse .card-content {
    direction: ltr;
}

.card-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.card-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.card-image {
    min-height: 250px;
    background: #e0e0e0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    border-radius: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    border: none;
    background: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #0078d7;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.faq-answer a {
    color: #0078d7;
    text-decoration: underline;
}

/* Rewards Section */
.rewards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.rewards-card {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.rewards-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.rewards-card h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rewards-card h2 .italic {
    font-style: italic;
    font-weight: 300;
}

.rewards-card > p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.rewards-card .btn-primary {
    margin-bottom: 20px;
}

.small-text {
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .connected-card {
        grid-template-columns: 1fr;
    }
    
    .connected-card.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .moving-hero h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        padding: 30px;
    }
    
    .option-content h3 {
        font-size: 24px;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .card-content h3 {
        font-size: 26px;
    }
    
    .rewards-card h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .moving-hero {
        padding: 60px 0 50px;
    }
    
    .moving-hero h1 {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}