/* Security Page Styles */

/* Container and Layout */
.security-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.security-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.security-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    opacity: 0.3;
}

.security-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.security-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.security-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.security-badge i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Main Content */
.security-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    margin-bottom: 2rem;
}

.security-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.security-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.security-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.security-section-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.security-section h2 {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}

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

/* Feature Lists */
.security-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-feature-list li {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.security-feature-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.security-feature-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.security-feature-list li strong {
    color: #374151;
}

/* Highlight Boxes */
.security-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.security-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #0ea5e9;
    border-radius: 2px 0 0 2px;
}

.security-highlight h3 {
    color: #0c4a6e;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.security-highlight h3 i {
    margin-right: 0.5rem;
}

.security-highlight p {
    color: #0f172a;
    margin: 0;
}

/* Stats Grid */
.security-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-stat {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.security-stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.security-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.security-stat p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Section */
.security-contact {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.security-contact h2 {
    color: white;
    margin-bottom: 1rem;
}

.security-contact p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.security-contact-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.security-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

/* Compliance Badges */
.security-compliance {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.security-compliance-badge {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-compliance-badge:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.security-compliance-badge img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.security-compliance-badge span {
    display: block;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.security-section {
    animation: fadeInUp 0.6s ease-out both;
}

.security-section:nth-child(1) { animation-delay: 0.1s; }
.security-section:nth-child(2) { animation-delay: 0.2s; }
.security-section:nth-child(3) { animation-delay: 0.3s; }
.security-section:nth-child(4) { animation-delay: 0.4s; }
.security-section:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .security-hero {
        padding: 2rem 0;
    }

    .security-hero h1 {
        font-size: 2rem;
    }

    .security-hero .lead {
        font-size: 1.1rem;
    }

    .security-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem;
    }

    .security-section-header {
        flex-direction: column;
        text-align: center;
    }

    .security-section-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .security-stats {
        grid-template-columns: 1fr;
    }

    .security-contact {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }

    .security-compliance {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .security-feature-list li {
        flex-direction: column;
        text-align: center;
    }

    .security-feature-list li::before {
        align-self: center;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .security-container {
        background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    }

    .security-content {
        background: #374151;
        color: #f9fafb;
    }

    .security-section h2 {
        color: #f9fafb;
    }

    .security-feature-list li {
        background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
        color: #f9fafb;
    }
}

/* Print styles */
@media print {
    .security-hero {
        background: #667eea !important;
        -webkit-print-color-adjust: exact;
    }

    .security-content {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }

    .security-contact {
        background: #1f2937 !important;
        -webkit-print-color-adjust: exact;
    }
}
