/* ===== STATIC PAGES STYLES ===== */

.static-page {
    padding: 40px 20px;
    background: #f9fafb;
    min-height: 60vh;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.breadcrumb-nav a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav i {
    font-size: 10px;
    margin: 0 8px;
    color: #999;
}

.breadcrumb-nav span {
    color: #333;
    font-weight: 600;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(26,35,126,0.2);
}

.page-header h1 {
    font-size: 36px;
    margin: 0 0 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header h1 i {
    font-size: 32px;
    color: #ff9800;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Content Card */
.content-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
}

.content-card h2 {
    font-size: 24px;
    color: #1a237e;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card h3 {
    font-size: 18px;
    color: #333;
    margin: 20px 0 10px;
}

.content-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.content-card ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-card ul li {
    color: #555;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-card strong {
    color: #1a237e;
}

.content-card a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
}

.content-card a:hover {
    text-decoration: underline;
}

/* Feature List (About page) */
.feature-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.feature-list li {
    padding: 12px 15px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 8px !important;
    border-left: 3px solid #1a237e;
}

.feature-list li i {
    color: #10b981;
    margin-right: 8px;
}

/* Features Grid (About page) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-box {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #1a237e;
}

.feature-box i {
    font-size: 40px;
    color: #1a237e;
    margin-bottom: 15px;
    display: block;
}

.feature-box h3 {
    font-size: 16px;
    color: #1a237e;
    margin: 10px 0;
}

.feature-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
}

.contact-info-card, .contact-form-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-info-card h2, .contact-form-card h2 {
    font-size: 22px;
    color: #1a237e;
    margin: 0 0 15px;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: #1a237e;
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-item a, .contact-item span {
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.contact-item a:hover {
    color: #1a237e;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    color: #1a237e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #1a237e;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,35,126,0.3);
}

/* Alerts */
.alert-success {
    background: #d1fae5;
    color: #065f46;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 26px;
    }
    
    .page-header h1 i {
        font-size: 24px;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    .content-card h2 {
        font-size: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}