<?php
$page_title = 'Contacto - Noumbu';
$page_description = 'Contacta con Noumbu. Estamos listos para ayudarte a transformar tu negocio digitalmente.';
include __DIR__ . '/includes/header.php';
?>

    <section class="contact-new" id="contacto" style="padding-top: 120px;">
        <div class="container">
            <div class="contact-new-header">
                <h2 class="contact-new-title">Hablemos de tu proyecto</h2>
                <p class="contact-new-subtitle">Estamos listos para ayudarte a transformar tu negocio digitalmente</p>
            </div>

            <div class="contact-new-wrapper">
                <div class="contact-new-info">
                    <div class="contact-new-card">
                        <div class="contact-new-card-icon">
                            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                                <path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/>
                            </svg>
                        </div>
                        <div class="contact-new-card-content">
                            <h3>Telefono</h3>
                            <p>+51 925 095 494</p>
                            <span>Lun - Vie, 9am - 6pm</span>
                        </div>
                    </div>

                    <div class="contact-new-card">
                        <div class="contact-new-card-icon">
                            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                                <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>
                                <polyline points="22,6 12,13 2,6"/>
                            </svg>
                        </div>
                        <div class="contact-new-card-content">
                            <h3>Email</h3>
                            <p>contacto@noumbu.com</p>
                            <span>Respuesta en 24h</span>
                        </div>
                    </div>

                    <div class="contact-new-card">
                        <div class="contact-new-card-icon">
                            <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
                                <path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/>
                                <circle cx="12" cy="10" r="3"/>
                            </svg>
                        </div>
                        <div class="contact-new-card-content">
                            <h3>Oficina</h3>
                            <p>Jr. Rio Branco 2362</p>
                            <span>San Martin de Porres, Lima - Peru</span>
                        </div>
                    </div>
                </div>

                <div class="contact-new-form">
                    <form id="contactForm" class="contact-new-form-inner">
                        <div class="contact-new-form-row">
                            <div class="contact-new-form-group">
                                <label for="name">Nombre completo *</label>
                                <input type="text" id="name" name="name" placeholder="Juan Perez" required>
                            </div>

                            <div class="contact-new-form-group">
                                <label for="email">Email *</label>
                                <input type="email" id="email" name="email" placeholder="juan@empresa.com" required>
                            </div>
                        </div>

                        <div class="contact-new-form-row">
                            <div class="contact-new-form-group">
                                <label for="phone">Telefono *</label>
                                <input type="tel" id="phone" name="phone" placeholder="+51 925 095 494" required>
                            </div>

                            <div class="contact-new-form-group">
                                <label for="company">Empresa</label>
                                <input type="text" id="company" name="company" placeholder="Mi Empresa SAC">
                            </div>
                        </div>

                        <div class="contact-new-form-group">
                            <label for="message">Mensaje *</label>
                            <textarea id="message" name="message" rows="5" placeholder="Cuentanos sobre tu proyecto..." required></textarea>
                        </div>

                        <button type="submit" class="contact-new-submit">
                            Enviar Mensaje
                            <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
                                <path d="M5 12h14M12 5l7 7-7 7"/>
                            </svg>
                        </button>
                    </form>
                </div>
            </div>
        </div>
    </section>

<?php include __DIR__ . '/includes/footer.php'; ?>
