/**
 * OKR PRO - Contact Page Styles
 * File: css/contact-style.css
 */

/* Hero Section */
.okrpro-contact-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.okrpro-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(circle at top, rgba(96, 165, 250, 0.1), transparent 50%);
}

.okrpro-contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.okrpro-contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.okrpro-contact-hero h1 .highlight {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.okrpro-contact-hero p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
}

/* Contact Section */
.okrpro-contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #F9FAFB 0%, white 100%);
}

.okrpro-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Form Wrapper */
.okrpro-contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Form Styles */
.okrpro-contact-form {
    display: flex;
    flex-direction: column;
}

.okrpro-form-group {
    margin-bottom: 1.5rem;
}

.okrpro-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.95rem;
}

.okrpro-form-group input,
.okrpro-form-group select,
.okrpro-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.okrpro-form-group input:focus,
.okrpro-form-group select:focus,
.okrpro-form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.okrpro-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.okrpro-form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.okrpro-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.okrpro-form-submit:active {
    transform: translateY(0);
}

/* Contact Info */
.okrpro-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.okrpro-contact-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.okrpro-contact-intro p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.okrpro-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Info Cards */
.okrpro-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    display: flex;
    gap: 1.25rem;
    align-items: start;
    transition: all 0.3s;
}

.okrpro-info-card:hover {
    border-color: #2563EB;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.okrpro-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.okrpro-info-content h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
    font-size: 1.125rem;
}

.okrpro-info-content p {
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.okrpro-info-content a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.okrpro-info-content a:hover {
    text-decoration: underline;
    color: #1E40AF;
}

/* FAQ Section */
.okrpro-faq-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
}

.okrpro-faq-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.okrpro-faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.okrpro-faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.okrpro-faq-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.okrpro-faq-answer {
    color: #6B7280;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .okrpro-contact-hero h1 {
        font-size: 2.5rem;
    }

    .okrpro-contact-container {
        grid-template-columns: 1fr;
    }

    .okrpro-contact-form-wrapper {
        padding: 2rem;
    }
}