/* ========================================
   POLICY & PROCEDURES PAGE STYLES
   ======================================== */

.policy-page {
    line-height: 1.6;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page Header */
.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    position: relative;
}

/* Home Icon Navigation */
.home-icon-nav {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 10;
}

.home-icon-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.policy-header .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.policy-header .breadcrumb a {
    color: white;
    text-decoration: none;
}

.policy-header .breadcrumb a:hover {
    text-decoration: underline;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.effective-date {
    font-size: 1.1rem;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Company Information */
.company-info {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.info-item h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #667eea;
}

.section-content {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 1.5rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #28a745;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: #28a745;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #333;
    margin-bottom: 0;
}

/* Procedure List */
.procedure-list {
    display: grid;
    gap: 1.5rem;
}

.procedure-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.procedure-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.procedure-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.procedure-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.procedure-content p {
    color: #666;
    margin-bottom: 0;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border-top: 4px solid #667eea;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 12px;
    padding: 3rem 2rem;
}

.contact-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 150px;
}

.contact-btn.primary {
    background: white;
    color: #28a745;
}

.contact-btn.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.contact-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-btn.secondary:hover {
    background: white;
    color: #28a745;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-container {
        padding: 1rem;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }

    /* Mobile adjustments for home icon */
    .home-icon-nav {
        top: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        padding: 0.6rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .procedure-item {
        flex-direction: column;
        text-align: center;
    }
    
    .procedure-icon {
        width: 100%;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .policy-header {
        padding: 1.5rem;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}
