/* Pages CSS - Styles for auxiliary pages */

/* Page Header */
.page-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.page-nav a {
    color: #6b7280;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-nav a:hover,
.page-nav a.active {
    color: #2563eb;
}

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-title p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.policy-meta {
    margin-top: 1.5rem;
}

.policy-meta span {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Page Sections */
.page-section {
    padding: 4rem 0;
}

.page-section.bg-light {
    background-color: #f8fafc;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.content-text p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Image Placeholders */
.content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    padding: 12px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    margin: 0;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.process-step p {
    color: #6b7280;
    margin: 0;
}

/* Commitment Content */
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-text p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.commitment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.policy-section h3 {
    color: #374151;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-section p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.policy-section li strong {
    color: #374151;
}

.contact-details {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: #2563eb;
    font-weight: 500;
}

.contact-details a:hover {
    color: #1d4ed8;
}

/* Responsive Design for Pages */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-nav {
        gap: 1rem;
    }
    
    .page-title {
        padding: 3rem 0;
    }
    
    .page-title h1 {
        font-size: 1.75rem;
    }
    
    .page-title p {
        font-size: 1rem;
    }
    
    .page-section {
        padding: 3rem 0;
    }
    
    .values-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-section {
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.25rem;
    }
    
    .content-image {
        margin-bottom: 2rem;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .page-title p {
        font-size: 0.875rem;
    }
    
    .value-card,
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .value-icon {
        width: 56px;
        height: 56px;
    }
    
    .value-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .contact-details {
        padding: 1rem;
    }
}

/* Print Styles for Policy Pages */
@media print {
    .page-header,
    .footer {
        display: none;
    }
    
    .page-title {
        background: none;
        padding: 2rem 0;
    }
    
    .policy-meta {
        margin-top: 1rem;
    }
    
    .policy-meta span {
        background: none;
        color: #000;
        border: 1px solid #000;
    }
    
    .page-section {
        padding: 1rem 0;
    }
    
    .policy-section {
        break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        color: #000;
        border-bottom: 1px solid #000;
    }
    
    .policy-section h3 {
        color: #000;
    }
    
    .policy-section p,
    .policy-section li {
        color: #000;
    }
    
    .contact-details {
        background: none;
        border: 1px solid #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}