/* ====================================================================
   RR Apps Studio - Contact Page Styles
   ==================================================================== */

.contact-hero-section {
    background: linear-gradient(135deg, #0b1329 0%, #172554 100%);
    padding: 5rem 0 4.5rem;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-hero-section h1 {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero-section p {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

/* Contact Info Column */
.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.contact-channel-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-channel-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.channel-icon.whatsapp {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}

.channel-icon.phone {
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
}

.channel-icon.address {
    background: rgba(6, 182, 212, 0.12);
    color: #0891b2;
}

.channel-content strong {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.2rem;
}

.channel-content a,
.channel-content span {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
    text-decoration: none;
}

.channel-content a:hover {
    color: var(--primary);
}

/* Form Column */
.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.8rem;
    box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.contact-form-card p {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group-field {
    margin-bottom: 1.4rem;
}

.form-group-field label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--text-main);
}

.form-group-field input,
.form-group-field textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--text-main);
    background-color: #ffffff;
    outline: none;
    transition: var(--transition);
}

.form-group-field input:focus,
.form-group-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* FAQ Accordion */
.faq-section {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.35rem 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    user-select: none;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.75rem 1.35rem;
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}