/*
 * Trooworths Your Account Information Page Styles
 * File: trooworths-your-account.css
 */

/* Hero Section */
.account-hero 
{
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.account-hero::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.account-hero h1 
{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.account-hero .lead 
{
    opacity: 0.9;
}

/* Quick Access Section */
.quick-access-section 
{
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.quick-access-card 
{
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.quick-access-card:hover 
{
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quick-access-card .icon-wrapper 
{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.quick-access-card .icon-wrapper i 
{
    font-size: 1.8rem;
    color: #1a1a2e;
}

.quick-access-card .icon-wrapper.blue-icon 
{
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.quick-access-card .icon-wrapper.blue-icon i 
{
    color: #ffc107;
}

.quick-access-card .icon-wrapper.green-icon 
{
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.quick-access-card .icon-wrapper.green-icon i 
{
    color: #ffffff;
}

.quick-access-card .icon-wrapper.purple-icon 
{
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.quick-access-card .icon-wrapper.purple-icon i 
{
    color: #ffffff;
}

.quick-access-card h3 
{
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.quick-access-card p 
{
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.btn-quick-access 
{
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-quick-access:hover 
{
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
}

/* Account Section */
.account-section 
{
    padding: 60px 0;
}

/* Account Card */
.account-card 
{
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 35px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.account-card:hover 
{
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.account-heading 
{
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.account-card p 
{
    color: #555555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.account-card p:last-child 
{
    margin-bottom: 0;
}

.account-card a 
{
    color: #0f3460;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.account-card a:hover 
{
    color: #ffc107;
    text-decoration: underline;
}

.account-card strong 
{
    color: #1a1a2e;
}

.account-card ul,
.account-card ol 
{
    color: #555555;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
}

.account-card li 
{
    margin-bottom: 10px;
}

/* Account Features Grid */
.features-section 
{
    padding: 70px 0;
    background: #ffffff;
}

.features-section-header 
{
    text-align: center;
    margin-bottom: 50px;
}

.features-section-header h2 
{
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.features-section-header p 
{
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Dashboard Preview */
.dashboard-preview 
{
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid #dee2e6;
}

.dashboard-header 
{
    background: #1a1a2e;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    margin: -30px -30px 20px -30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-header h5 
{
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.dashboard-header .user-avatar 
{
    width: 35px;
    height: 35px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-weight: 700;
}

.dashboard-menu 
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.dashboard-menu-item 
{
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
}

.dashboard-menu-item:hover 
{
    border-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dashboard-menu-item i 
{
    font-size: 1.5rem;
    color: #0f3460;
    margin-bottom: 10px;
    display: block;
}

.dashboard-menu-item span 
{
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
}

/* Account Settings Cards */
.settings-card 
{
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.settings-card:hover 
{
    border-color: #ffc107;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.settings-card .settings-header 
{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.settings-card .settings-icon 
{
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9900 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.settings-card .settings-icon i 
{
    font-size: 1.3rem;
    color: #1a1a2e;
}

.settings-card .settings-icon.blue 
{
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.settings-card .settings-icon.blue i 
{
    color: #ffc107;
}

.settings-card .settings-icon.green 
{
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.settings-card .settings-icon.green i 
{
    color: #ffffff;
}

.settings-card .settings-icon.red 
{
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.settings-card .settings-icon.red i 
{
    color: #ffffff;
}

.settings-card h4 
{
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.settings-card .settings-desc 
{
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

.settings-card .settings-content 
{
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.settings-card .settings-content ul 
{
    margin-bottom: 0;
    padding-left: 20px;
}

.settings-card .settings-content li 
{
    margin-bottom: 8px;
}

/* Benefits Section */
.benefits-section 
{
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefit-card 
{
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover 
{
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #ffc107;
}

.benefit-card .benefit-icon 
{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card .benefit-icon i 
{
    font-size: 1.8rem;
    color: #ff9900;
}

.benefit-card h4 
{
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.benefit-card p 
{
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Security Badge */
.security-badge 
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #155724;
    margin: 10px 5px;
}

.security-badge i 
{
    color: #28a745;
}

/* Form Preview */
.form-preview 
{
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    border: 1px dashed #dee2e6;
}

.form-preview .form-group 
{
    margin-bottom: 15px;
}

.form-preview .form-group:last-child 
{
    margin-bottom: 0;
}

.form-preview label 
{
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.form-preview .form-control-preview 
{
    background: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #495057;
}

/* Important Notice Section */
.notice-section 
{
    background: #fff8e1;
    padding: 40px 0;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.notice-card 
{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.notice-card .notice-icon 
{
    width: 50px;
    height: 50px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-card .notice-icon i 
{
    font-size: 1.3rem;
    color: #1a1a2e;
}

.notice-card .notice-content h5 
{
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.notice-card .notice-content p 
{
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
}

/* CTA Section */
.cta-section 
{
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 
{
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-section .lead 
{
    opacity: 0.9;
}

.cta-section .btn-warning 
{
    background-color: #ffc107;
    border-color: #ffc107;
    color: #1a1a2e;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-warning:hover 
{
    background-color: #ffcd39;
    border-color: #ffcd39;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

/* Last Updated Banner */
.bg-light.border-bottom 
{
    background-color: #f8f9fa !important;
}

.bg-light.border-bottom .text-muted 
{
    font-size: 0.95rem;
}

.bg-light.border-bottom i 
{
    color: #ffc107;
}

/* Action Button in Cards */
.btn-action 
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-action.btn-primary-action 
{
    background: #1a1a2e;
    color: #ffffff;
}

.btn-action.btn-primary-action:hover 
{
    background: #0f3460;
    color: #ffc107;
}

.btn-action.btn-secondary-action 
{
    background: #f8f9fa;
    color: #1a1a2e;
    border: 1px solid #dee2e6;
}

.btn-action.btn-secondary-action:hover 
{
    background: #e9ecef;
    border-color: #ffc107;
}

/* Checklist Styling */
.checklist-item 
{
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.checklist-item:hover 
{
    background: #e9ecef;
}

.checklist-item i 
{
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.checklist-item.success i 
{
    color: #28a745;
}

.checklist-item.info i 
{
    color: #17a2b8;
}

.checklist-item.warning i 
{
    color: #ffc107;
}

.checklist-item span 
{
    color: #555;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) 
{
    .account-hero 
    {
        padding: 80px 0 60px;
    }
    
    .account-hero h1 
    {
        font-size: 2.5rem;
    }
    
    .account-section 
    {
        padding: 40px 0;
    }
    
    .account-card 
    {
        padding: 25px;
    }
    
    .account-heading 
    {
        font-size: 1.3rem;
    }
    
    .features-section,
    .benefits-section 
    {
        padding: 50px 0;
    }
    
    .features-section-header h2 
    {
        font-size: 1.8rem;
    }
    
    .dashboard-menu 
    {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) 
{
    .account-hero 
    {
        padding: 60px 0 40px;
    }
    
    .account-hero h1 
    {
        font-size: 2rem;
    }
    
    .account-hero .lead 
    {
        font-size: 1.1rem;
    }
    
    .account-section 
    {
        padding: 30px 0;
    }
    
    .account-card 
    {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .account-heading 
    {
        font-size: 1.2rem;
    }
    
    .account-card p 
    {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .quick-access-card 
    {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .quick-access-section 
    {
        padding: 40px 0;
    }
    
    .features-section,
    .benefits-section 
    {
        padding: 40px 0;
    }
    
    .features-section-header h2 
    {
        font-size: 1.5rem;
    }
    
    .dashboard-menu 
    {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .settings-card .settings-header 
    {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-card 
    {
        margin-bottom: 20px;
    }
    
    .notice-card 
    {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .cta-section 
    {
        padding: 60px 0;
    }
    
    .cta-section h2 
    {
        font-size: 1.75rem;
    }
    
    .security-badge 
    {
        display: flex;
        margin: 5px 0;
    }
}

@media (max-width: 768px) 
{
    .account-hero
    {
        margin-top: 136px;
    }
}

/* Print Styles */
@media print 
{
    .account-hero 
    {
        background: #1a1a2e !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .account-card 
    {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .cta-section,
    .quick-access-section 
    {
        display: none;
    }
}

/* Smooth Scroll for Anchor Links */
html 
{
    scroll-behavior: smooth;
}

/* Accessibility Focus States */
.account-card a:focus 
{
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

.btn-quick-access:focus,
.btn-warning:focus 
{
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}