/* ===== Pages Styles (About, Privacy, Terms, Contact) ===== */

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    padding: 80px 0;
    margin-bottom: 50px;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Page Content ===== */
.page-content {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.page-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
    margin-bottom: 30px;
}

.page-section:last-child {
    margin-bottom: 0;
}

.page-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.page-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 25px 0 12px;
}

.page-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.page-section ul,
.page-section ol {
    margin: 15px 0 15px 30px;
}

.page-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== About Page Specific ===== */
.about-hero {
    text-align: center;
    margin-bottom: 40px;
}

.about-hero img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.about-hero h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.about-hero p {
    color: var(--text-light);
    font-size: 18px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
}

.team-member h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-member span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.team-member p {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Contact Page Specific ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--border-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-details h4 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #c92a36;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* ===== Privacy & Terms Page Specific ===== */
.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.legal-section h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 20px 0 10px;
}

.legal-section ul {
    list-style: disc;
    margin: 15px 0 15px 30px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

.last-updated {
    text-align: right;
    color: #999;
    font-size: 14px;
    margin-top: 20px;
    font-style: italic;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 20px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav span {
    color: #999;
}

.breadcrumb-nav .current {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .page-section {
        padding: 25px;
    }

    .page-section h2 {
        font-size: 24px;
    }

    .page-section h3 {
        font-size: 18px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}
