/* ===================================
   ישרה - Contact Page Styles
   =================================== */

/* Contact Hero */
.contact-hero .page-hero-content {
    padding-top: 60px;
}

/* Contact Section */
.contact-section {
    background: var(--dark);
}

/* WhatsApp Hero Section */
.whatsapp-hero {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}

.whatsapp-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
}

.whatsapp-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.whatsapp-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.whatsapp-content > p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.whatsapp-checklist {
    list-style: none;
    text-align: right;
    max-width: 400px;
    margin: 0 auto 40px;
}

.whatsapp-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whatsapp-checklist li:last-child {
    border-bottom: none;
}

.whatsapp-checklist .check {
    width: 24px;
    height: 24px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.whatsapp-checklist span:last-child {
    color: var(--gray-300);
}

.btn-xlarge {
    padding: 20px 48px;
    font-size: 1.2rem;
    gap: 16px;
}

.btn-xlarge svg {
    width: 28px;
    height: 28px;
}

.whatsapp-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Process Simple */
.process-simple {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.process-simple h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.process-step-simple {
    flex: 1;
    max-width: 220px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.process-step-simple:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 16px;
}

.process-step-simple h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step-simple p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--gray-600);
}

/* Info Cards Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.info-card-simple {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-base);
}

.info-card-simple:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.info-card-simple h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.info-card-simple p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Alternative Contact */
.alternative-contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.alternative-contact h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.alternative-contact > p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.alt-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.alt-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition-base);
}

.alt-option:hover {
    border-color: var(--primary);
    color: var(--white);
}

.alt-icon {
    font-size: 1.2rem;
}

/* Simple Form */
.simple-form-wrapper {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.simple-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.simple-form input,
.simple-form textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

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

.simple-form input::placeholder,
.simple-form textarea::placeholder {
    color: var(--gray-600);
}

.simple-form textarea {
    resize: vertical;
    min-height: 80px;
}

.simple-form .btn {
    align-self: center;
    min-width: 120px;
}

/* Hidden field for spam protection */
.hidden-field {
    display: none !important;
}

/* FAQ Section */
.faq {
    background: var(--dark-lighter);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .step-arrow {
        display: none;
    }
    
    .process-step-simple {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .whatsapp-content {
        padding: 40px 30px;
    }
    
    .whatsapp-content h2 {
        font-size: 1.6rem;
    }
    
    .btn-xlarge {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-card-simple {
        padding: 24px 20px;
    }
    
    .simple-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .alternative-contact {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-content {
        padding: 30px 20px;
    }
    
    .whatsapp-icon {
        font-size: 3rem;
    }
    
    .whatsapp-content h2 {
        font-size: 1.4rem;
    }
    
    .process-simple h3 {
        font-size: 1.2rem;
    }
    
    .process-step-simple {
        padding: 24px 16px;
    }
}
