
/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.section-padding {
    padding: 100px 0;
}

/* Page Header */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 20px;
    color: #666666;
    position: relative;
    z-index: 1;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(242, 101, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 164, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(139, 47, 92, 0.15) 0%, transparent 50%);
    z-index: 0;
}

/* Contact Info Section */
.contact-info-section {
    background: #FFFFFF;
    padding: 60px 0;
    position: relative;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(242, 101, 34, 0.3);
    box-shadow: var(--shadow-card);
}

.info-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-link {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.info-link:hover {
    color: var(--color-teal);
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    color: #25D366;
    font-size: 13px;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    background: #F5F5F5;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

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

.form-container {
    background: #FAFAFA;
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(242, 101, 34, 0.1);
    border: 1px solid rgba(242, 101, 34, 0.3);
    border-radius: 50px;
    color: var(--color-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.form-container > p {
    color: #666666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #888888;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #1A1A1A;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-group select option {
    background: #FFFFFF;
    color: #1A1A1A;
}

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

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Contact Visual */
.contact-visual {
    position: sticky;
    top: 100px;
}

.visual-content {
    background: #FAFAFA;
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.visual-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

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

.benefits-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(242, 101, 34, 0.2);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.benefits-list li span:last-child {
    color: #888888;
    font-size: 15px;
}

.whatsapp-box {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.whatsapp-text p {
    color: #666666;
    font-size: 14px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    text-align: center;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Map Section */
.map-section {
    position: relative;
    background: #FFFFFF;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
}

.map-card {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-card);
    max-width: 300px;
}

.map-card p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 5px;
}

/* FAQ Section */
.faq-section {
    background: #F5F5F5;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    color: #666666;
    font-size: 18px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #FAFAFA;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(242, 101, 34, 0.2);
}

.faq-item.active {
    border-color: rgba(242, 101, 34, 0.3);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(242, 101, 34, 0.1);
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    transition: all var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--color-orange);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: #666666;
    line-height: 1.8;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 42px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-visual {
        position: relative;
        top: 0;
    }

    .map-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-container h2 {
        font-size: 28px;
    }

    .visual-content {
        padding: 30px 20px;
    }

    .map-card {
        max-width: 280px;
        padding: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}
