/* ========================================
   About & Contact Pages Styles
   ======================================== */

/* Page Hero */
.page-hero {
    padding: 72px 24px 28px;
    text-align: center;
    background: linear-gradient(180deg, #f8fafc 0%, #faf5ff 50%, #f8fafc 100%);
}

.page-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 80px 24px;
    background: #f8fafc;
}

.page-hero + .content-section {
    padding-top: 20px;
}

.contact-page .page-hero {
    padding-bottom: 12px;
}

.contact-page .contact-info-section {
    padding-top: 0;
}

.content-section.alt {
    background: #ffffff;
}

/* Card */
.content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.content-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

/* Feature Grid */
.feature-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    width: 320px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-item-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.feature-item-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.product-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.product-subtitle {
    font-size: 14px;
    color: #64748b;
}

.product-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 24px;
    background: #f8fafc;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-list {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: #faf5ff;
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.contact-item-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Form Card */
.form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #ffffff;
    min-width: 180px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: #1e1e2e;
    color: #ffffff;
    min-width: 180px;
    border: 1px solid #8b5cf6;
}

.btn-secondary:hover {
    background: #2a2a3e;
}

.btn-green {
    background: #10b981;
    color: #ffffff;
    min-width: 180px;
}

.btn-green:hover {
    background: #0d9668;
}

.btn-cyan {
    background: #06b6d4;
    color: #ffffff;
    min-width: 180px;
}

.btn-cyan:hover {
    background: #0891b2;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 56px 20px 24px;
    }

    .page-hero-title {
        font-size: 36px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .content-section,
    .cta-section {
        padding: 56px 20px;
    }

    .content-card,
    .product-card,
    .form-card {
        padding: 24px;
    }

    .feature-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 400px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 560px) {
    .page-hero {
        padding: 48px 16px 20px;
    }

    .content-section,
    .cta-section {
        padding: 44px 16px;
    }

    .content-card,
    .product-card,
    .form-card,
    .feature-item {
        padding: 20px;
    }

    .product-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-item {
        padding: 20px 18px;
    }
}
