/* Contact Page Styles */
.contact-page {
    padding: 100px 0;
    background-color: #fafafa;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Column */
.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-desc {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
}

.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
}

.cp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.cp-group {
    display: flex;
    flex-direction: column;
}

.cp-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.cp-group input,
.cp-group select,
.cp-group textarea {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    background-color: #f5f5f5;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.2s ease;
    outline: none;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.cp-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

.cp-group input:focus,
.cp-group select:focus,
.cp-group textarea:focus {
    border-color: #0A882E;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(10,136,46,0.1);
}

.cp-group input::placeholder,
.cp-group textarea::placeholder {
    color: #888;
}

.cp-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #0A882E;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.cp-submit-btn:hover {
    background-color: #086d25;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(10,136,46,0.2);
}

.cp-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Right Column */
.contact-right {
    padding-top: 10px;
}

.contact-avatars {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 50px;
}

.contact-avatars img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

.contact-avatars img:first-child {
    margin-left: 0;
}

.process-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.2;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 52px;
    height: 52px;
    background-color: #e8f5e9;
    color: #0A882E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    margin-top: 2px;
}

.step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.other-reach {
    background-color: #e8f5e9;
    border-radius: 20px;
    padding: 30px;
}

.other-reach h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

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

.reach-item:last-child {
    margin-bottom: 0;
}

.reach-item i {
    color: #0A882E;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.reach-item a {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.reach-item a:hover {
    color: #0A882E;
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-avatars {
        justify-content: flex-start;
    }
    
    .contact-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0;
    }

    .cp-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 2.4rem;
    }
    
    .process-step {
        gap: 16px;
    }
}
