/* Contact Page Specific Styles */
/* All mobile navigation styles are now handled by main style.css file */

.contact-hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 1200px;
    margin: -40px auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e7edf4;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0d141c;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0d141c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e7edf4;
    border-radius: 12px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background-color: #f8fafc;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="%23666" d="M8 12L3 7h10l-5 5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d3748;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.business-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0d141c;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2d3748;
}

.info-icon {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #0d141c;
}

.info-content p {
    color: #49739c;
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

.quick-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.quick-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
}

.call-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.instagram-btn {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
    color: white;
}

.map-section {
    margin-top: 40px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e7edf4;
}

.map-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d141c;
}

.map-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e7edf4;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}

/* Footer map fix */
.footer .map-container {
    height: auto;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: none;
}

.footer .map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: #cbd5e0;
    text-decoration: none;
    padding: 0;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer .map-link:hover {
    color: white;
    transform: none;
}

.footer .map-link i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-hero {
        padding: 40px 0;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .contact-content {
        margin: -20px auto 40px;
        padding: 0 12px;
    }

    .contact-card {
        padding: 20px 12px;
    }

    .contact-form-section h2,
    .business-info h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 9px 10px;
        font-size: 13px;
    }

    .submit-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .info-item {
        padding: 12px;
        margin-bottom: 12px;
    }

    .info-content h4 {
        font-size: 13px;
    }

    .info-content p {
        font-size: 12px;
    }

    .quick-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
    }

    .quick-action-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .map-section {
        padding: 16px 12px;
        margin-top: 16px;
    }

    .map-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.6rem;
    }

    .contact-hero p {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 20px 12px;
    }

    .contact-form-section h2,
    .business-info h2 {
        font-size: 1.3rem;
    }

    .info-content h4 {
        font-size: 13px;
    }

    .info-content p {
        font-size: 12px;
    }

    .map-container {
        height: 200px;
    }
}
