
/* Renovation Planner Write For Us Styles */
/* Brand Colors: Primary #2d5ec7 */

.rpwfu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.rpwfu-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2d5ec7 0%, #1e4299 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 40px;
}

.rpwfu-main-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: white !important;
}

.rpwfu-intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: white;
}

/* Section Styles */
.rpwfu-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rpwfu-section-title {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2d5ec7;
}

.rpwfu-subsection {
    margin: 30px 0;
}

.rpwfu-subsection-title {
    font-size: 1.5em;
    color: #34495e;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Benefits Grid */
.rpwfu-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.rpwfu-benefit-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rpwfu-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(45, 94, 199, 0.2);
}

.rpwfu-benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

/* Topics Grid */
.rpwfu-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.rpwfu-topic-item {
    padding: 10px;
    background: #f1f3f5;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.rpwfu-topic-bullet {
    color: #2d5ec7;
    font-weight: bold;
    margin-right: 10px;
}

/* Warning Box */
.rpwfu-warning-box {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 5px;
}

/* Requirements List */
.rpwfu-requirements-list {
    margin: 20px 0;
}

.rpwfu-requirement {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.rpwfu-check {
    color: #2d5ec7;
    font-size: 1.5em;
    margin-right: 15px;
    flex-shrink: 0;
}

.rpwfu-sub-list {
    margin-top: 10px;
    margin-left: 20px;
    list-style-type: disc;
}

.rpwfu-sub-list li {
    margin: 5px 0;
}

/* Simple List */
.rpwfu-simple-list {
    margin: 15px 0;
    padding-left: 30px;
}

.rpwfu-simple-list li {
    margin: 10px 0;
    list-style-type: disc;
}

/* Get Grid */
.rpwfu-get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.rpwfu-get-item {
    text-align: center;
    padding: 20px;
    background: #e9ecef;
    border-radius: 8px;
}

.rpwfu-get-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

/* Review Box */
.rpwfu-review-box {
    background: #f0f8ff;
    border: 2px solid #2d5ec7;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
}

.rpwfu-feature-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

.rpwfu-feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.rpwfu-feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5ec7;
    font-weight: bold;
    font-size: 1.2em;
}

.rpwfu-important-note {
    background: #ffeaa7;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Steps */
.rpwfu-steps {
    margin: 30px 0;
}

.rpwfu-step {
    display: flex;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
}

.rpwfu-step-number {
    width: 50px;
    height: 50px;
    background: #2d5ec7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.rpwfu-step-content h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.3em;
}

.rpwfu-step-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.rpwfu-step-content li {
    margin: 8px 0;
}

/* CTA Button */
.rpwfu-cta-section {
    text-align: center;
    margin: 40px 0;
}

.rpwfu-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2d5ec7 0%, #1e4299 100%);
    color: white !important;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.rpwfu-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 94, 199, 0.4);
    color: white !important;
    text-decoration: none;
}

/* Checklist */
.rpwfu-checklist {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.rpwfu-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.rpwfu-checklist-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 5px;
    cursor: default;
}

.rpwfu-checklist-item input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    accent-color: #2d5ec7;
}

/* Timeline */
.rpwfu-timeline {
    margin: 25px 0;
}

.rpwfu-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.rpwfu-timeline-badge {
    font-size: 2em;
    margin-right: 20px;
}

.rpwfu-timeline-content {
    flex: 1;
}

/* FAQ Section */
.rpwfu-faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2d5ec7;
}

.rpwfu-faq-question {
    color: #2c3e50;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.rpwfu-faq-answer {
    color: #555;
    line-height: 1.8;
}

/* Final CTA */
.rpwfu-final-cta {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
}

.rpwfu-final-cta .rpwfu-section-title {
    border-bottom: none;
}

/* Form Section */
.rpwfu-form-section {
    background: #ffffff;
    padding: 40px;
    margin-top: 40px;
    border: 2px solid #2d5ec7;
}

.rpwfu-form-section .rpwfu-section-title {
    text-align: center;
    color: #2d5ec7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rpwfu-main-title {
        font-size: 2em;
    }
    
    .rpwfu-section {
        padding: 20px;
    }
    
    .rpwfu-benefits-grid,
    .rpwfu-topics-grid,
    .rpwfu-get-grid,
    .rpwfu-checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .rpwfu-step {
        flex-direction: column;
        text-align: center;
    }
    
    .rpwfu-step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .rpwfu-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

/* Print Styles */
@media print {
    .rpwfu-hero {
        background: #f8f9fa !important;
        color: #333 !important;
    }
    
    .rpwfu-main-title {
        color: #333 !important;
    }
    
    .rpwfu-intro {
        color: #333 !important;
    }
    
    .rpwfu-cta-button {
        display: none;
    }
    
    .rpwfu-section {
        box-shadow: none;
        page-break-inside: avoid;
    }
}

/* Form Plugin Compatibility */
.rpwfu-form-section .wpforms-container,
.rpwfu-form-section .gform_wrapper,
.rpwfu-form-section .wpcf7 {
    max-width: 600px;
    margin: 0 auto;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
