/*
 * File: page_styles/willDo_styles.css
 * Purpose: willDo-Now.html page styling - What SafetyBuddy Does For You
 * Version: 1.0 - INITIAL CREATION
 * Timestamp: 2025-09-08 16:45
 * Author: Claude AI Assistant for SafetyBuddy
 * Dependencies: css/styles.css, SafetyBuddy color palette
 * Features: Back buttons, benefit cards, advanced features, responsive design
 */

/* ===========================================
   BACK BUTTONS
   =========================================== */
.back-button-top, .back-button-bottom {
    padding: 20px;
    text-align: left;
}

.back-button-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-btn:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
}

.back-btn i {
    font-size: 0.9rem;
}

/* ===========================================
   MAIN CONTAINER
   =========================================== */
.willdo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================================
   HEADER SECTION
   =========================================== */
.willdo-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #55B4B0 0%, #4a9b97 100%);
    color: #ffffff;
    border-radius: 12px;
}

.willdo-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.willdo-header h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.9;
}

.header-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================================
   PROMISE SECTION
   =========================================== */
.promise-section {
    margin-bottom: 50px;
    text-align: center;
}

.promise-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #55B4B0;
    max-width: 900px;
    margin: 0 auto;
}

.promise-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
    font-style: italic;
}

/* ===========================================
   BENEFITS SECTION
   =========================================== */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #55B4B0;
}

.benefit-card.expanded {
    border-color: #55B4B0;
    background: #f8fbfa;
}

.benefit-icon {
    text-align: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 3rem;
    color: #55B4B0;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 15px;
}

.benefit-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.benefit-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-details li {
    padding: 8px 0;
    color: #6c757d;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.benefit-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #55B4B0;
    font-weight: bold;
}

/* ===========================================
   ADVANCED FEATURES SECTION
   =========================================== */
.advanced-features-section {
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
}

.advanced-features-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2rem;
    color: #55B4B0;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* ===========================================
   TRY NOW SECTION
   =========================================== */
.try-now-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.try-now-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.try-now-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: #55B4B0;
    margin-bottom: 35px;
}

.cta-buttons-large {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-primary-large, .btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.btn-primary-large {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
}

.btn-primary-large:hover {
    background: linear-gradient(135deg, #219a52 0%, #27ae60 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    color: #ffffff;
}

.btn-secondary-large {
    background: transparent;
    color: #ffffff;
    border: 2px solid #55B4B0;
}

.btn-secondary-large:hover {
    background: #55B4B0;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(85, 180, 176, 0.4);
}

/* ===========================================
   PRICING NOTE SECTION
   =========================================== */
.pricing-note-section {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-note {
    background: #e8f5e8;
    padding: 20px 30px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    display: inline-block;
}

.pricing-note p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 768px) {
    .willdo-header {
        padding: 30px 20px;
    }
    
    .willdo-header h1 {
        font-size: 2rem;
    }
    
    .willdo-header h2 {
        font-size: 1.4rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .advanced-features-section {
        padding: 30px 20px;
    }
    
    .try-now-section {
        padding: 35px 25px;
    }
    
    .try-now-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons-large {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large, .btn-secondary-large {
        width: 100%;
        max-width: 280px;
    }
    
    .promise-content {
        padding: 25px 20px;
    }
    
    .promise-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .willdo-container {
        padding: 0 15px;
    }
    
    .willdo-header {
        padding: 25px 15px;
    }
    
    .willdo-header h1 {
        font-size: 1.7rem;
    }
    
    .willdo-header h2 {
        font-size: 1.2rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .benefits-section h2,
    .advanced-features-section h2,
    .try-now-section h2 {
        font-size: 1.6rem;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .advanced-features-section {
        padding: 25px 15px;
    }
    
    .try-now-section {
        padding: 30px 20px;
    }
    
    .promise-content {
        padding: 20px 15px;
    }
    
    .back-button-top, .back-button-bottom {
        padding: 15px;
    }
    
    .benefit-details li {
        font-size: 0.9rem;
    }
}

/* ===========================================
   ANIMATION ENHANCEMENTS
   =========================================== */
@keyframes expandDetails {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

.benefit-details {
    animation: expandDetails 0.3s ease when displayed;
}

/* Click indicator for benefit cards */
.benefit-card::after {
    content: "Click to expand";
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.8rem;
    color: #adb5bd;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card {
    position: relative;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card.expanded::after {
    content: "Click to collapse";
    opacity: 1;
}